mirror of
https://github.com/opnsense/src.git
synced 2026-04-22 23:02:02 -04:00
Unbreak for the !__XSI_VISIBLE case when another header that defines
size_t has not been included first.
This commit is contained in:
parent
8eca3fa11c
commit
cd3edecb19
1 changed files with 5 additions and 5 deletions
|
|
@ -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;
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue