From: Jim Meyering Date: Sat, 13 May 1995 12:55:49 +0000 (+0000) Subject: (argmatch): Include sys/types.h and declare length argument with type size_t. X-Git-Tag: cvs-readonly~8747 X-Git-Url: http://erislabs.net/gitweb/?a=commitdiff_plain;h=3af578d2e29267bfd7ac6bffdb18703602474a36;p=gnulib.git (argmatch): Include sys/types.h and declare length argument with type size_t. --- diff --git a/lib/argmatch.c b/lib/argmatch.c index f3f1a50d2..d632890a4 100644 --- a/lib/argmatch.c +++ b/lib/argmatch.c @@ -17,6 +17,12 @@ /* Written by David MacKenzie */ +#ifdef HAVE_CONFIG_H +#include +#endif + +#include + #include #ifdef STDC_HEADERS #include @@ -35,12 +41,12 @@ argmatch (arg, optlist) char **optlist; { int i; /* Temporary index in OPTLIST. */ - int arglen; /* Length of ARG. */ + size_t arglen; /* Length of ARG. */ int matchind = -1; /* Index of first nonexact match. */ int ambiguous = 0; /* If nonzero, multiple nonexact match(es). */ - + arglen = strlen (arg); - + /* Test all elements for either exact match or abbreviated matches. */ for (i = 0; optlist[i]; i++) {