Reflect int -> size_t changes in glob.h

This commit is contained in:
ache 2006-05-22 06:53:35 +00:00
parent a069364a5c
commit 8c58df695f

View File

@ -63,9 +63,9 @@ defines the structure type
which contains at least the following fields:
.Bd -literal
typedef struct {
int gl_pathc; /* count of total paths so far */
int gl_matchc; /* count of paths matching pattern */
int gl_offs; /* reserved at beginning of gl_pathv */
size_t gl_pathc; /* count of total paths so far */
size_t gl_matchc; /* count of paths matching pattern */
size_t gl_offs; /* reserved at beginning of gl_pathv */
int gl_flags; /* returned flags */
char **gl_pathv; /* list of paths matching pattern */
} glob_t;