diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/gen/glob.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/libc/gen/glob.3 b/lib/libc/gen/glob.3 index a9f0458..79bbd3c 100644 --- a/lib/libc/gen/glob.3 +++ b/lib/libc/gen/glob.3 @@ -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; |