diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-06 10:21:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-06 10:21:30 +0000 |
commit | acdf125133f9ec20dc533a1af879c52a8e754f90 (patch) | |
tree | 1d61cb807566584de805504e9fc4f3b035bd068a /argp | |
parent | 3cb0721780482693695c9cba48b0401995c4793d (diff) | |
download | glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.tar glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.tar.gz glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.tar.bz2 glibc-acdf125133f9ec20dc533a1af879c52a8e754f90.zip |
Update.
1998-10-05 Andreas Jaeger <aj@arthur.rhein-neckar.de>
* sysdeps/unix/sysv/linux/bits/socket.h (__cmsg_nxthdr): Use __P
in definitions of inline stat functions so that they match the
declaration.
* stdlib/stdlib.h: Likewise.
* wcsmbs/wchar.h: Likewise.
* libio/stdio.h: Likewise.
* stdio/stdio.h: Likewise.
* sysdeps/wordsize-64/inttypes.h: Likewise.
* sysdeps/wordsize-32/inttypes.h: Likewise.
* string/argz.h: Likewise.
* argp/argp.h: Likewise.
Diffstat (limited to 'argp')
-rw-r--r-- | argp/argp.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/argp/argp.h b/argp/argp.h index 8045e3b456..b4ac686393 100644 --- a/argp/argp.h +++ b/argp/argp.h @@ -535,13 +535,13 @@ extern void *__argp_input __P ((__const struct argp *argp, # endif ARGP_EI void -__argp_usage (__const struct argp_state *__state) +__argp_usage __P ((__const struct argp_state *__state)) { __argp_state_help (__state, stderr, ARGP_HELP_STD_USAGE); } ARGP_EI int -__option_is_short (__const struct argp_option *__opt) +__option_is_short __P ((__const struct argp_option *__opt)) { if (__opt->flags & OPTION_DOC) return 0; @@ -553,7 +553,7 @@ __option_is_short (__const struct argp_option *__opt) } ARGP_EI int -__option_is_end (__const struct argp_option *__opt) +__option_is_end __P ((__const struct argp_option *__opt)) { return !__opt->key && !__opt->name && !__opt->doc && !__opt->group; } |