From 2b2581b1ef8adf71666fd19d9634f51f62dad22d Mon Sep 17 00:00:00 2001 From: tjr Date: Thu, 26 Dec 2002 14:44:45 +0000 Subject: Unbreak for the !__XSI_VISIBLE case when another header that defines size_t has not been included first. --- include/wordexp.h | 10 +++++----- 1 file 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; /* -- cgit v1.1