summaryrefslogtreecommitdiffstats
path: root/include/wordexp.h
diff options
context:
space:
mode:
authortjr <tjr@FreeBSD.org>2002-12-26 14:44:45 +0000
committertjr <tjr@FreeBSD.org>2002-12-26 14:44:45 +0000
commit2b2581b1ef8adf71666fd19d9634f51f62dad22d (patch)
tree132f4270cdc95699ea3ab0871abf257ca1ba6823 /include/wordexp.h
parent7295c6ae0464fd3bc0ccfd4ff3cf438f3f7735bd (diff)
downloadFreeBSD-src-2b2581b1ef8adf71666fd19d9634f51f62dad22d.zip
FreeBSD-src-2b2581b1ef8adf71666fd19d9634f51f62dad22d.tar.gz
Unbreak for the !__XSI_VISIBLE case when another header that defines
size_t has not been included first.
Diffstat (limited to 'include/wordexp.h')
-rw-r--r--include/wordexp.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/wordexp.h b/include/wordexp.h
index 02adc85..a6f0213 100644
--- a/include/wordexp.h
+++ b/include/wordexp.h
@@ -38,11 +38,11 @@ typedef __size_t size_t;
#endif
typedef struct {
- size_t we_wordc; /* count of words matched */
- char **we_wordv; /* pointer to list of words */
- size_t we_offs; /* slots to reserve in we_wordv */
- char *we_strings; /* storage for wordv strings */
- size_t we_nbytes; /* size of we_strings */
+ __size_t we_wordc; /* count of words matched */
+ char **we_wordv; /* pointer to list of words */
+ __size_t we_offs; /* slots to reserve in we_wordv */
+ char *we_strings; /* storage for wordv strings */
+ __size_t we_nbytes; /* size of we_strings */
} wordexp_t;
/*
OpenPOWER on IntegriCloud