Unbreak for the !__XSI_VISIBLE case when another header that defines

size_t has not been included first.
This commit is contained in:
Tim J. Robbins 2002-12-26 14:44:45 +00:00
parent 8eca3fa11c
commit cd3edecb19
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=108291

View file

@ -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;
/*