From: Jim Meyering Date: Thu, 21 Dec 1995 23:05:56 +0000 (+0000) Subject: . X-Git-Tag: TEXTUTILS-1_13i~12 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=11f5ed65ba1996b044eb14c5e99b7c343d9b8129;p=thirdparty%2Fcoreutils.git . --- diff --git a/lib/argmatch.h b/lib/argmatch.h new file mode 100644 index 0000000000..cbd6ce155a --- /dev/null +++ b/lib/argmatch.h @@ -0,0 +1,18 @@ +#ifndef ARGMATCH_H +#define ARGMATCH_H 1 + +#ifndef __P +# if defined (__GNUC__) || (defined (__STDC__) && __STDC__) +# define __P(args) args +# else +# define __P(args) () +# endif /* GCC. */ +#endif /* Not __P. */ + +int + argmatch __P ((const char *arg, const char *const *optlist)); + +void + invalid_arg __P ((const char *kind, const char *value, int problem)); + +#endif /* ARGMATCH_H */