diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-10-13 15:12:27 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-10-13 15:12:27 +0000 |
commit | 99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f (patch) | |
tree | cc97f13ce989554a0bd4f67c1fbcb3982e99fac6 /argp/argp.h | |
parent | 1622fda9c034eb332f27453d6458ea6d30b119c0 (diff) | |
download | glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.tar glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.tar.gz glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.tar.bz2 glibc-99e46354d96d9dc70c7b5ae7ed1a3d7ff0dbb77f.zip |
Update.
1998-10-13 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/sparc/sparc32/sigaction.c: Include
string.h to get memcpy prototype and NULL definition.
1998-10-12 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* misc/sys/cdefs.h (__THROW): New macro.
* argp/argp.h: Use it to replace the kludgey __P in inline
function definitions.
* sysdeps/unix/sysv/linux/bits/socket.h: Likewise.
* 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.
* io/sys/stat.h: Likewise.
1998-10-12 Andreas Schwab <schwab@issan.cs.uni-dortmund.de>
* Rules (stdio_lim): New variable.
($(stdio_lim:h=st)): Use this as intermediate stamp file, depend
on Rules and config.make, use $(move-if-change) to avoid unnessary
recompilations, and cleanup command.
(common-generated): Add bits/stdio_lim.st.
Diffstat (limited to 'argp/argp.h')
-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 b4ac686393..cc35970afa 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 __P ((__const struct argp_state *__state)) +__argp_usage (__const struct argp_state *__state) __THROW { __argp_state_help (__state, stderr, ARGP_HELP_STD_USAGE); } ARGP_EI int -__option_is_short __P ((__const struct argp_option *__opt)) +__option_is_short (__const struct argp_option *__opt) __THROW { if (__opt->flags & OPTION_DOC) return 0; @@ -553,7 +553,7 @@ __option_is_short __P ((__const struct argp_option *__opt)) } ARGP_EI int -__option_is_end __P ((__const struct argp_option *__opt)) +__option_is_end (__const struct argp_option *__opt) __THROW { return !__opt->key && !__opt->name && !__opt->doc && !__opt->group; } |