summaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-13 22:01:00 +0000
committerRoland McGrath <roland@gnu.org>1996-05-13 22:01:00 +0000
commita5b7bf0e62e88494d82f7ca6474b6b8b669c1e98 (patch)
treedaaf2d03e20448bd425400c78ffcee8fa82d4f11 /stdio-common
parent95a108f0baaa38911b02e90d1f8179fd08a01ac2 (diff)
* configure.in (--with-fp): Note in help string that it's the default.
* locale/programs/ld-ctype.c (struct locale_ctype_t): Use u_int32_t instead of unsigned int for map_collection_max and map_collection_act. * stdio-common/vfprintf.c [USE_IN_LIBIO] (flockfile, funlockfile): Macros removed; they are in <stdio.h>. * stdio-common/vfscanf.c: Likewise. `-include' to not complain before they exist.
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/vfprintf.c2
-rw-r--r--stdio-common/vfscanf.c2
2 files changed, 0 insertions, 4 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c
index 6430a924f4..193c392eb8 100644
--- a/stdio-common/vfprintf.c
+++ b/stdio-common/vfprintf.c
@@ -102,8 +102,6 @@ ssize_t __wprintf_pad __P ((FILE *, wchar_t pad, size_t n));
} \
} while (0)
# define UNBUFFERED_P(S) ((S)->_IO_file_flags & _IO_UNBUFFERED)
-# define flockfile(S) _IO_flockfile (S)
-# define funlockfile(S) _IO_funlockfile (S)
#else /* ! USE_IN_LIBIO */
/* This code is for use in the GNU C library. */
# include <stdio.h>
diff --git a/stdio-common/vfscanf.c b/stdio-common/vfscanf.c
index 9cdad7bb8b..d133ef1a02 100644
--- a/stdio-common/vfscanf.c
+++ b/stdio-common/vfscanf.c
@@ -81,8 +81,6 @@ Cambridge, MA 02139, USA. */
return EOF; \
} \
} while (0)
-# define flockfile(S) _IO_flockfile (S)
-# define funlockfile(S) _IO_funlockfile (S)
#else
# define inchar() ((c = getc (s)), (void) ++read_in, c)
# define conv_error() do { \