diff options
Diffstat (limited to 'include/wordexp.h')
-rw-r--r-- | include/wordexp.h | 10 |
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; /* |