diff options
author | Miles Bader <miles@gnu.org> | 1997-06-05 02:32:36 +0000 |
---|---|---|
committer | Miles Bader <miles@gnu.org> | 1997-06-05 02:32:36 +0000 |
commit | c32f45f5878a95f450553c7b70184dd327a590a9 (patch) | |
tree | e8e7ebc1a4395b9ea2338c1029bff50a99995ae6 /libshouldbeinlibc/argp.h | |
parent | 365ea1090602389a3b18cbc65cada27b08bd4fb1 (diff) | |
download | hurd-c32f45f5878a95f450553c7b70184dd327a590a9.tar.gz hurd-c32f45f5878a95f450553c7b70184dd327a590a9.tar.bz2 hurd-c32f45f5878a95f450553c7b70184dd327a590a9.zip |
Sync with libc version (there were minor whitespace differences, etc).
Diffstat (limited to 'libshouldbeinlibc/argp.h')
-rw-r--r-- | libshouldbeinlibc/argp.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/libshouldbeinlibc/argp.h b/libshouldbeinlibc/argp.h index f4b7e4db..61ed8351 100644 --- a/libshouldbeinlibc/argp.h +++ b/libshouldbeinlibc/argp.h @@ -241,7 +241,7 @@ struct argp TEXT is NULL for this key. */ /* Explanatory note emitted when duplicate option arguments have been suppressed. */ -#define ARGP_KEY_HELP_DUP_ARGS_NOTE 0x2000005 +#define ARGP_KEY_HELP_DUP_ARGS_NOTE 0x2000005 #define ARGP_KEY_HELP_ARGS_DOC 0x2000006 /* Argument doc string. */ /* When an argp has a non-zero CHILDREN field, it should point to a vector of @@ -369,11 +369,11 @@ struct argp_state returned. This function may also call exit unless the ARGP_NO_HELP flag is set. INPUT is a pointer to a value to be passed in to the parser. */ extern error_t argp_parse __P ((__const struct argp *__argp, - int __argc, char **__argv, unsigned __flags, - int *__arg_index, void *__input)); + int __argc, char **__argv, unsigned __flags, + int *__arg_index, void *__input)); extern error_t __argp_parse __P ((__const struct argp *__argp, - int __argc, char **__argv, unsigned __flags, - int *__arg_index, void *__input)); + int __argc, char **__argv, unsigned __flags, + int *__arg_index, void *__input)); /* Global variables. */ @@ -396,7 +396,7 @@ extern void (*argp_program_version_hook) __P ((FILE *__stream, argp_help if the ARGP_HELP_BUG_ADDR flag is set (as it is by various standard help messages), embedded in a sentence that says something like `Report bugs to ADDR.'. */ -__const extern char *argp_program_bug_address; +extern __const char *argp_program_bug_address; /* The exit status that argp will use when exiting due to a parsing error. If not defined or set by the user program, this defaults to EX_USAGE from |