Tag
Hash :
e7e1ebbb
Author :
Date :
1997-05-27T10:39:10
Change dcl of program_name so it doesn't conflict with the ubiquitous char* one.
/* argmatch.h -- declarations for matching arguments against option lists */
#if defined __STDC__ || __GNUC__
# define __ARGMATCH_P(args) args
#else
# define __ARGMATCH_P(args) ()
#endif
int argmatch __ARGMATCH_P ((const char *, const char * const *));
void invalid_arg __ARGMATCH_P ((const char *, const char *, int));
extern char *program_name;