diff options
author | Andreas Jaeger <aj@suse.de> | 2000-12-27 07:56:28 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-12-27 07:56:28 +0000 |
commit | 03bac9acadcafeef0fcdc38719844167c77f412d (patch) | |
tree | bdd5f69403c9019f7c0b49ea5ca98fe3eccdeace /sysdeps/posix | |
parent | 8001fa60142c49a43e66b6874271d136a2792469 (diff) | |
download | glibc-03bac9acadcafeef0fcdc38719844167c77f412d.tar.gz glibc-03bac9acadcafeef0fcdc38719844167c77f412d.tar.xz glibc-03bac9acadcafeef0fcdc38719844167c77f412d.zip |
Update.
2000-12-26 Andreas Jaeger <aj@suse.de> * libio/getc_u.c: Include stdio.h via system path to get internal prototypes. * libio/getwc_u.c: Likewise. * stdlib/strfmon.c: Fix prototype of __printf_fp. * stdio-common/vfprintf.c (process_arg): Move __printf_fphex and __printf_fp prototypes to ... * include/printf.h: ...here. * include/stdio.h: Add some internal prototypes to shut up GCC. * include/stdlib.h: Likewise. * sysdeps/posix/sigpause.c (__sigpause): Use ISO C prototype declaration. * include/signal.h: Add prototypes for internal sigpause interfaces.
Diffstat (limited to 'sysdeps/posix')
-rw-r--r-- | sysdeps/posix/sigpause.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sysdeps/posix/sigpause.c b/sysdeps/posix/sigpause.c index 4832c6a4a5..df6461d5cb 100644 --- a/sysdeps/posix/sigpause.c +++ b/sysdeps/posix/sigpause.c @@ -23,9 +23,7 @@ /* Set the mask of blocked signals to MASK, wait for a signal to arrive, and then restore the mask. */ int -__sigpause (sig_or_mask, is_sig) - int sig_or_mask; - int is_sig; +__sigpause (int sig_or_mask, int is_sig) { sigset_t set; int sig; |