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 /libio | |
parent | 8001fa60142c49a43e66b6874271d136a2792469 (diff) | |
download | glibc-03bac9acadcafeef0fcdc38719844167c77f412d.tar glibc-03bac9acadcafeef0fcdc38719844167c77f412d.tar.gz glibc-03bac9acadcafeef0fcdc38719844167c77f412d.tar.bz2 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 'libio')
-rw-r--r-- | libio/getc_u.c | 4 | ||||
-rw-r--r-- | libio/getwc_u.c | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/libio/getc_u.c b/libio/getc_u.c index a722a315f2..b052cecc35 100644 --- a/libio/getc_u.c +++ b/libio/getc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1993,1995,1996,1997,1999,2000 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or @@ -24,7 +24,7 @@ General Public License. */ #include "libioP.h" -#include "stdio.h" +#include <stdio.h> #undef getc_unlocked diff --git a/libio/getwc_u.c b/libio/getwc_u.c index 606b4d24cc..8d2c5f4cce 100644 --- a/libio/getwc_u.c +++ b/libio/getwc_u.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1993, 1995, 1996, 1997, 1999 Free Software Foundation, Inc. +/* Copyright (C) 1993,1995,1996,1997,1999,2000 Free Software Foundation, Inc. This file is part of the GNU IO Library. This library is free software; you can redistribute it and/or @@ -24,7 +24,7 @@ General Public License. */ #include "libioP.h" -#include "stdio.h" +#include <stdio.h> #undef getwc_unlocked |