From deab9deadc372fe1a367aef2e78c0d8f2885bf23 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Tue, 17 Oct 1995 00:41:39 +0000 Subject: [PATCH] * Makefile (subdirs): Replace stdio with stdio-common and $(stdio). * configure.in: Grok arg --enable-libio. ($stdio = libio): Define USE_IN_LIBIO. * config.h.in (USE_IN_LIBIO): Add #undef. * config.make.in (stdio): New variable, set by configure. * Makeconfig (stdio): New variable. * stdio.h [USE_IN_LIBIO]: Include libio/stdio.h instead of stdio/stdio.h. * stdio-common/Makefile: New file. * stdio/Makefile: Half the contents moved to stdio-common/Makefile. * stdio/_itoa.c: Moved to stdio-common. * stdio/_itoa.h: Moved to stdio-common. * stdio/asprintf.c: Moved to stdio-common. * stdio/bug1.c: Moved to stdio-common. * stdio/bug1.input: Moved to stdio-common. * stdio/bug2.c: Moved to stdio-common. * stdio/bug3.c: Moved to stdio-common. * stdio/bug4.c: Moved to stdio-common. * stdio/bug5.c: Moved to stdio-common. * stdio/bug6.c: Moved to stdio-common. * stdio/bug6.input: Moved to stdio-common. * stdio/bug7.c: Moved to stdio-common. * stdio/dprintf.c: Moved to stdio-common. * stdio/errnobug.c: Moved to stdio-common. * stdio/getline.c: Moved to stdio-common. * stdio/getw.c: Moved to stdio-common. * stdio/perror.c: Moved to stdio-common. * stdio/printf-parse.h: Moved to stdio-common. * stdio/printf-prs.c: Moved to stdio-common. * stdio/printf.c: Moved to stdio-common. * stdio/printf.h: Moved to stdio-common. * stdio/printf_fp.c: Moved to stdio-common. * stdio/psignal.c: Moved to stdio-common. * stdio/putw.c: Moved to stdio-common. * stdio/reg-printf.c: Moved to stdio-common. * stdio/scanf.c: Moved to stdio-common. * stdio/snprintf.c: Moved to stdio-common. * stdio/sprintf.c: Moved to stdio-common. * stdio/sscanf.c: Moved to stdio-common. * stdio/tempnam.c: Moved to stdio-common. * stdio/temptest.c: Moved to stdio-common. * stdio/test-fseek.c: Moved to stdio-common. * stdio/test-fwrite.c: Moved to stdio-common. * stdio/test-popen.c: Moved to stdio-common. * stdio/test_rdwr.c: Moved to stdio-common. * stdio/tmpfile.c: Moved to stdio-common. * stdio/tmpnam.c: Moved to stdio-common. * stdio/tst-fileno.c: Moved to stdio-common. * stdio/tst-printf.c: Moved to stdio-common. * stdio/tstgetln.c: Moved to stdio-common. * stdio/tstgetln.input: Moved to stdio-common. * stdio/tstscanf.c: Moved to stdio-common. * stdio/tstscanf.input: Moved to stdio-common. * stdio/vfprintf.c: Moved to stdio-common. * stdio/vfscanf.c: Moved to stdio-common. * stdio/vprintf.c: Moved to stdio-common. * stdio/xbug.c: Moved to stdio-common. * sysdeps/generic/Makefile (siglist.c rules): Do this in subdir stdio-common instead of stdio. * sysdeps/unix/Makefile (errlist.c rules): Likewise. * stdio-common/asprintf.c [USE_IN_LIBIO]: Call libio primitive function. * stdio-common/dprintf.c: Likewise. * stdio-common/printf.c: Likewise. * stdio-common/scanf.c: Likewise. * stdio-common/snprintf.c: Likewise. * stdio-common/sprintf.c: Likewise. * stdio-common/sscanf.c: Likewise. * stdio-common/vprintf.c: Likewise. * Makerules: Include $(+depfiles) directly instead of generating depend-$(subdir). (depend-$(subdir)): Target removed. (common-clean): Don't remove depend-$(subdir). --- ChangeLog | 75 ++++++++++++++++++++++++++++++++++ Makeconfig | 6 +++ Makefile | 8 ++-- Makerules | 16 ++------ config.h.in | 4 ++ config.make.in | 1 + configure.in | 8 ++++ stdio-common/Makefile | 47 +++++++++++++++++++++ {stdio => stdio-common}/_itoa.c | 0 {stdio => stdio-common}/_itoa.h | 0 {stdio => stdio-common}/asprintf.c | 17 ++++---- {stdio => stdio-common}/bug1.c | 0 {stdio => stdio-common}/bug1.input | 0 {stdio => stdio-common}/bug2.c | 0 {stdio => stdio-common}/bug3.c | 0 {stdio => stdio-common}/bug4.c | 0 {stdio => stdio-common}/bug5.c | 0 {stdio => stdio-common}/bug6.c | 0 {stdio => stdio-common}/bug6.input | 0 {stdio => stdio-common}/bug7.c | 0 {stdio => stdio-common}/dprintf.c | 16 +++++--- {stdio => stdio-common}/errnobug.c | 0 {stdio => stdio-common}/fprintf.c | 0 {stdio => stdio-common}/fscanf.c | 0 {stdio => stdio-common}/getline.c | 0 {stdio => stdio-common}/getw.c | 0 {stdio => stdio-common}/perror.c | 0 {stdio => stdio-common}/printf-parse.h | 0 {stdio => stdio-common}/printf-prs.c | 0 {stdio => stdio-common}/printf.c | 15 ++++--- {stdio => stdio-common}/printf.h | 0 {stdio => stdio-common}/printf_fp.c | 0 {stdio => stdio-common}/psignal.c | 0 {stdio => stdio-common}/putw.c | 0 {stdio => stdio-common}/reg-printf.c | 0 {stdio => stdio-common}/scanf.c | 15 ++++--- {stdio => stdio-common}/snprintf.c | 18 ++++---- {stdio => stdio-common}/sprintf.c | 16 +++++--- {stdio => stdio-common}/sscanf.c | 16 +++++--- {stdio => stdio-common}/tempnam.c | 0 {stdio => stdio-common}/temptest.c | 0 {stdio => stdio-common}/test-fseek.c | 0 {stdio => stdio-common}/test-fwrite.c | 0 {stdio => stdio-common}/test-popen.c | 0 {stdio => stdio-common}/test_rdwr.c | 0 {stdio => stdio-common}/tmpfile.c | 0 {stdio => stdio-common}/tmpnam.c | 0 {stdio => stdio-common}/tst-fileno.c | 0 {stdio => stdio-common}/tst-printf.c | 0 {stdio => stdio-common}/tstgetln.c | 0 {stdio => stdio-common}/tstgetln.input | 0 {stdio => stdio-common}/tstscanf.c | 0 {stdio => stdio-common}/tstscanf.input | 0 {stdio => stdio-common}/vasprintf.c | 0 {stdio => stdio-common}/vdprintf.c | 0 {stdio => stdio-common}/vfprintf.c | 0 {stdio => stdio-common}/vfscanf.c | 0 {stdio => stdio-common}/vprintf.c | 10 +++-- {stdio => stdio-common}/vscanf.c | 0 {stdio => stdio-common}/vsnprintf.c | 0 {stdio => stdio-common}/vsprintf.c | 0 {stdio => stdio-common}/vsscanf.c | 0 {stdio => stdio-common}/xbug.c | 0 stdio.h | 4 ++ stdio/Makefile | 26 +++--------- sysdeps/generic/Makefile | 4 +- 66 files changed, 235 insertions(+), 87 deletions(-) create mode 100644 stdio-common/Makefile rename {stdio => stdio-common}/_itoa.c (100%) rename {stdio => stdio-common}/_itoa.h (100%) rename {stdio => stdio-common}/asprintf.c (77%) rename {stdio => stdio-common}/bug1.c (100%) rename {stdio => stdio-common}/bug1.input (100%) rename {stdio => stdio-common}/bug2.c (100%) rename {stdio => stdio-common}/bug3.c (100%) rename {stdio => stdio-common}/bug4.c (100%) rename {stdio => stdio-common}/bug5.c (100%) rename {stdio => stdio-common}/bug6.c (100%) rename {stdio => stdio-common}/bug6.input (100%) rename {stdio => stdio-common}/bug7.c (100%) rename {stdio => stdio-common}/dprintf.c (79%) rename {stdio => stdio-common}/errnobug.c (100%) rename {stdio => stdio-common}/fprintf.c (100%) rename {stdio => stdio-common}/fscanf.c (100%) rename {stdio => stdio-common}/getline.c (100%) rename {stdio => stdio-common}/getw.c (100%) rename {stdio => stdio-common}/perror.c (100%) rename {stdio => stdio-common}/printf-parse.h (100%) rename {stdio => stdio-common}/printf-prs.c (100%) rename {stdio => stdio-common}/printf.c (80%) rename {stdio => stdio-common}/printf.h (100%) rename {stdio => stdio-common}/printf_fp.c (100%) rename {stdio => stdio-common}/psignal.c (100%) rename {stdio => stdio-common}/putw.c (100%) rename {stdio => stdio-common}/reg-printf.c (100%) rename {stdio => stdio-common}/scanf.c (80%) rename {stdio => stdio-common}/snprintf.c (77%) rename {stdio => stdio-common}/sprintf.c (79%) rename {stdio => stdio-common}/sscanf.c (78%) rename {stdio => stdio-common}/tempnam.c (100%) rename {stdio => stdio-common}/temptest.c (100%) rename {stdio => stdio-common}/test-fseek.c (100%) rename {stdio => stdio-common}/test-fwrite.c (100%) rename {stdio => stdio-common}/test-popen.c (100%) rename {stdio => stdio-common}/test_rdwr.c (100%) rename {stdio => stdio-common}/tmpfile.c (100%) rename {stdio => stdio-common}/tmpnam.c (100%) rename {stdio => stdio-common}/tst-fileno.c (100%) rename {stdio => stdio-common}/tst-printf.c (100%) rename {stdio => stdio-common}/tstgetln.c (100%) rename {stdio => stdio-common}/tstgetln.input (100%) rename {stdio => stdio-common}/tstscanf.c (100%) rename {stdio => stdio-common}/tstscanf.input (100%) rename {stdio => stdio-common}/vasprintf.c (100%) rename {stdio => stdio-common}/vdprintf.c (100%) rename {stdio => stdio-common}/vfprintf.c (100%) rename {stdio => stdio-common}/vfscanf.c (100%) rename {stdio => stdio-common}/vprintf.c (84%) rename {stdio => stdio-common}/vscanf.c (100%) rename {stdio => stdio-common}/vsnprintf.c (100%) rename {stdio => stdio-common}/vsprintf.c (100%) rename {stdio => stdio-common}/vsscanf.c (100%) rename {stdio => stdio-common}/xbug.c (100%) diff --git a/ChangeLog b/ChangeLog index 610def7..5e0887b 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,80 @@ Mon Oct 16 03:22:37 1995 Roland McGrath + * Makefile (subdirs): Replace stdio with stdio-common and $(stdio). + * configure.in: Grok arg --enable-libio. + ($stdio = libio): Define USE_IN_LIBIO. + * config.h.in (USE_IN_LIBIO): Add #undef. + * config.make.in (stdio): New variable, set by configure. + * Makeconfig (stdio): New variable. + * stdio.h [USE_IN_LIBIO]: Include libio/stdio.h instead of + stdio/stdio.h. + * stdio-common/Makefile: New file. + * stdio/Makefile: Half the contents moved to stdio-common/Makefile. + * stdio/_itoa.c: Moved to stdio-common. + * stdio/_itoa.h: Moved to stdio-common. + * stdio/asprintf.c: Moved to stdio-common. + * stdio/bug1.c: Moved to stdio-common. + * stdio/bug1.input: Moved to stdio-common. + * stdio/bug2.c: Moved to stdio-common. + * stdio/bug3.c: Moved to stdio-common. + * stdio/bug4.c: Moved to stdio-common. + * stdio/bug5.c: Moved to stdio-common. + * stdio/bug6.c: Moved to stdio-common. + * stdio/bug6.input: Moved to stdio-common. + * stdio/bug7.c: Moved to stdio-common. + * stdio/dprintf.c: Moved to stdio-common. + * stdio/errnobug.c: Moved to stdio-common. + * stdio/getline.c: Moved to stdio-common. + * stdio/getw.c: Moved to stdio-common. + * stdio/perror.c: Moved to stdio-common. + * stdio/printf-parse.h: Moved to stdio-common. + * stdio/printf-prs.c: Moved to stdio-common. + * stdio/printf.c: Moved to stdio-common. + * stdio/printf.h: Moved to stdio-common. + * stdio/printf_fp.c: Moved to stdio-common. + * stdio/psignal.c: Moved to stdio-common. + * stdio/putw.c: Moved to stdio-common. + * stdio/reg-printf.c: Moved to stdio-common. + * stdio/scanf.c: Moved to stdio-common. + * stdio/snprintf.c: Moved to stdio-common. + * stdio/sprintf.c: Moved to stdio-common. + * stdio/sscanf.c: Moved to stdio-common. + * stdio/tempnam.c: Moved to stdio-common. + * stdio/temptest.c: Moved to stdio-common. + * stdio/test-fseek.c: Moved to stdio-common. + * stdio/test-fwrite.c: Moved to stdio-common. + * stdio/test-popen.c: Moved to stdio-common. + * stdio/test_rdwr.c: Moved to stdio-common. + * stdio/tmpfile.c: Moved to stdio-common. + * stdio/tmpnam.c: Moved to stdio-common. + * stdio/tst-fileno.c: Moved to stdio-common. + * stdio/tst-printf.c: Moved to stdio-common. + * stdio/tstgetln.c: Moved to stdio-common. + * stdio/tstgetln.input: Moved to stdio-common. + * stdio/tstscanf.c: Moved to stdio-common. + * stdio/tstscanf.input: Moved to stdio-common. + * stdio/vfprintf.c: Moved to stdio-common. + * stdio/vfscanf.c: Moved to stdio-common. + * stdio/vprintf.c: Moved to stdio-common. + * stdio/xbug.c: Moved to stdio-common. + * sysdeps/generic/Makefile (siglist.c rules): Do this in subdir + stdio-common instead of stdio. + * sysdeps/unix/Makefile (errlist.c rules): Likewise. + * stdio-common/asprintf.c [USE_IN_LIBIO]: Call libio primitive + function. + * stdio-common/dprintf.c: Likewise. + * stdio-common/printf.c: Likewise. + * stdio-common/scanf.c: Likewise. + * stdio-common/snprintf.c: Likewise. + * stdio-common/sprintf.c: Likewise. + * stdio-common/sscanf.c: Likewise. + * stdio-common/vprintf.c: Likewise. + + * Makerules: Include $(+depfiles) directly instead of generating + depend-$(subdir). + (depend-$(subdir)): Target removed. + (common-clean): Don't remove depend-$(subdir). + * sysdeps/unix/sysv/linux/Makefile (rtld-installed-name): New variable. (config-LDFLAGS): Variable removed. diff --git a/Makeconfig b/Makeconfig index d21d711..cbb2db0 100644 --- a/Makeconfig +++ b/Makeconfig @@ -114,6 +114,12 @@ export sysdep_dir := $(sysdep_dir) #### +# Set this to either `stdio' or `libio', to compile in either GNU stdio +# or GNU libio. +ifndef stdio +stdio = stdio +endif + # Common prefix for machine-independent installation directories. ifeq ($(origin prefix),undefined) # ifndef would override explicit empty value. prefix = /usr/local diff --git a/Makefile b/Makefile index f3d5e1c..f1aae8e 100644 --- a/Makefile +++ b/Makefile @@ -51,10 +51,10 @@ sysdep-subdirs := $(subst $(\n), ,$(sysdep-subdirs)) endif # These are the subdirectories containing the library source. -subdirs := csu assert ctype locale intl math setjmp signal stdio stdlib \ - malloc string time dirent grp pwd posix io termios resource \ - misc socket sysvipc gmon gnulib $(wildcard crypt) manual \ - $(sysdep-subdirs) elf +subdirs = csu assert ctype locale intl math setjmp signal stdlib \ + stdio-common $(stdio) malloc string time dirent grp pwd \ + posix io termios resource misc socket sysvipc gmon gnulib \ + $(wildcard crypt) manual $(sysdep-subdirs) elf export subdirs := $(subdirs) # Benign, useless in GNU make before 3.63. # The mach and hurd subdirectories have many generated header files which diff --git a/Makerules b/Makerules index 56f8cc8..ac1ac39 100644 --- a/Makerules +++ b/Makerules @@ -301,19 +301,10 @@ endif $(filter-out $(addsuffix .d,$(omit-deps)),\ $(+depfiles))) -$(objpfx)depend-$(subdir): Makefile ifdef +depfiles - for file in $(+depfiles:$(objpfx)%=%); do \ - echo "include \$$(objpfx)$$file"; \ - done > $@-tmp - mv -f $@-tmp $@ -else - cp /dev/null $@ -endif - ifneq ($(no_deps),t) -# Include the generated dependencies of the sources in this directory. -include $(objpfx)depend-$(subdir) +include $(+depfiles) +endif endif # Maximize efficiency by minimizing the number of rules. @@ -623,8 +614,7 @@ endef # Also remove the dependencies and generated source files. common-clean: common-mostlyclean - -rm -f $(objpfx)depend-$(subdir) $(+depfiles) - -rm -f $(addprefix $(objpfx),$(generated)) + -rm -f $(addprefix $(objpfx),$(generated)) $(+depfiles) # Produce a file `stub-$(subdir)' which contains `#define __stub_FUNCTION' # for each function which is a stub. We grovel over all the .d files diff --git a/config.h.in b/config.h.in index 800fe15..485f861 100644 --- a/config.h.in +++ b/config.h.in @@ -30,6 +30,10 @@ #define HAVE_WEAK_SYMBOLS #endif #endif + +/* Define to use GNU libio instead of GNU stdio. + This is defined by configure under --enable-libio. */ +#undef USE_IN_LIBIO /* */ /* These symbols might be defined by some sysdeps configures. */ diff --git a/config.make.in b/config.make.in index 69d4fcb..2af925d 100644 --- a/config.make.in +++ b/config.make.in @@ -24,6 +24,7 @@ gnu-ld = @gnu_ld@ build-shared = @shared@ build-profile = @profile@ build-omitfp = @omitfp@ +stdio = @stdio@ # Build tools. CC = @CC@ diff --git a/configure.in b/configure.in index e7d4ecb..239e7fd 100644 --- a/configure.in +++ b/configure.in @@ -40,6 +40,11 @@ AC_ARG_WITH(weak-symbols, dnl --with-weak-symbols if weak symbols are available in as and ld, weak=$withval, weak=no) +AC_ARG_ENABLE(libio, dnl +[ --enable-libio build in GNU libio instead of GNU stdio], + stdio=libio, stdio=stdio) +AC_SUBST(stdio) + dnl Arguments to enable or disable building the shared, profiled, and dnl -fomit-frame-pointer libraries. AC_ARG_ENABLE(shared, dnl @@ -485,6 +490,9 @@ fi AC_SUBST(profile) AC_SUBST(omitfp) +if test $stdio = libio; then + AC_DEFINE(USE_IN_LIBIO) +fi if test "`(cd $srcdir; pwd)`" = "`pwd`"; then config_makefile= diff --git a/stdio-common/Makefile b/stdio-common/Makefile new file mode 100644 index 0000000..6ca6c7d --- /dev/null +++ b/stdio-common/Makefile @@ -0,0 +1,47 @@ +# Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +# This file is part of the GNU C Library. + +# The GNU C Library is free software; you can redistribute it and/or +# modify it under the terms of the GNU Library General Public License as +# published by the Free Software Foundation; either version 2 of the +# License, or (at your option) any later version. + +# The GNU C Library is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU +# Library General Public License for more details. + +# You should have received a copy of the GNU Library General Public +# License along with the GNU C Library; see the file COPYING.LIB. If +# not, write to the Free Software Foundation, Inc., 675 Mass Ave, +# Cambridge, MA 02139, USA. + +# +# Specific makefile for stdio-common. +# +subdir := stdio-common + +headers := stdio_lim.h printf.h + +routines := \ + ctermid cuserid \ + vfprintf vprintf printf_fp reg-printf printf-prs _itoa \ + vsnprintf vsprintf vasprintf \ + fprintf printf snprintf sprintf asprintf \ + dprintf vdprintf \ + vfscanf vscanf vsscanf \ + fscanf scanf sscanf \ + perror psignal \ + tmpfile tmpnam tempnam tempname \ + getline getw putw \ + remove rename +aux := errlist siglist +distribute := _itoa.h printf-parse.h + +tests := tst-printf tstscanf test_rdwr test-popen tstgetln test-fseek \ + temptest tst-fileno test-fwrite \ + xbug errnobug \ + bug1 bug2 bug3 bug4 bug5 bug6 bug7 + + +include ../Rules diff --git a/stdio/_itoa.c b/stdio-common/_itoa.c similarity index 100% rename from stdio/_itoa.c rename to stdio-common/_itoa.c diff --git a/stdio/_itoa.h b/stdio-common/_itoa.h similarity index 100% rename from stdio/_itoa.h rename to stdio-common/_itoa.h diff --git a/stdio/asprintf.c b/stdio-common/asprintf.c similarity index 77% rename from stdio/asprintf.c rename to stdio-common/asprintf.c index 9b69800..85ab7b1 100644 --- a/stdio/asprintf.c +++ b/stdio-common/asprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,24 +16,27 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #include +#ifdef USE_IN_LIBIO +# define vasprintf _IO_vasprintf +#endif /* Write formatted output from FORMAT to a string which is allocated with malloc and stored in *STRING_PTR. */ /* VARARGS2 */ int -DEFUN(asprintf, (string_ptr, format), - char **string_ptr AND CONST char *format DOTS) +asprintf (string_ptr, format) + char **string_ptr; + const char *format; { va_list arg; int done; - va_start(arg, format); - done = vasprintf(string_ptr, format, arg); - va_end(arg); + va_start (arg, format); + done = vasprintf (string_ptr, format, arg); + va_end (arg); return done; } diff --git a/stdio/bug1.c b/stdio-common/bug1.c similarity index 100% rename from stdio/bug1.c rename to stdio-common/bug1.c diff --git a/stdio/bug1.input b/stdio-common/bug1.input similarity index 100% rename from stdio/bug1.input rename to stdio-common/bug1.input diff --git a/stdio/bug2.c b/stdio-common/bug2.c similarity index 100% rename from stdio/bug2.c rename to stdio-common/bug2.c diff --git a/stdio/bug3.c b/stdio-common/bug3.c similarity index 100% rename from stdio/bug3.c rename to stdio-common/bug3.c diff --git a/stdio/bug4.c b/stdio-common/bug4.c similarity index 100% rename from stdio/bug4.c rename to stdio-common/bug4.c diff --git a/stdio/bug5.c b/stdio-common/bug5.c similarity index 100% rename from stdio/bug5.c rename to stdio-common/bug5.c diff --git a/stdio/bug6.c b/stdio-common/bug6.c similarity index 100% rename from stdio/bug6.c rename to stdio-common/bug6.c diff --git a/stdio/bug6.input b/stdio-common/bug6.input similarity index 100% rename from stdio/bug6.input rename to stdio-common/bug6.input diff --git a/stdio/bug7.c b/stdio-common/bug7.c similarity index 100% rename from stdio/bug7.c rename to stdio-common/bug7.c diff --git a/stdio/dprintf.c b/stdio-common/dprintf.c similarity index 79% rename from stdio/dprintf.c rename to stdio-common/dprintf.c index fc9faa4..5746d49 100644 --- a/stdio/dprintf.c +++ b/stdio-common/dprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,22 +16,26 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #include +#ifdef USE_IN_LIBIO +# define vdprintf _IO_vdprintf +#endif /* Write formatted output to D, according to the format string FORMAT. */ /* VARARGS2 */ int -DEFUN(dprintf, (d, format), int d AND CONST char *format DOTS) +dprintf (d, format) + int d; + const char *format; { va_list arg; int done; - va_start(arg, format); - done = vdprintf(d, format, arg); - va_end(arg); + va_start (arg, format); + done = vdprintf (d, format, arg); + va_end (arg); return done; } diff --git a/stdio/errnobug.c b/stdio-common/errnobug.c similarity index 100% rename from stdio/errnobug.c rename to stdio-common/errnobug.c diff --git a/stdio/fprintf.c b/stdio-common/fprintf.c similarity index 100% rename from stdio/fprintf.c rename to stdio-common/fprintf.c diff --git a/stdio/fscanf.c b/stdio-common/fscanf.c similarity index 100% rename from stdio/fscanf.c rename to stdio-common/fscanf.c diff --git a/stdio/getline.c b/stdio-common/getline.c similarity index 100% rename from stdio/getline.c rename to stdio-common/getline.c diff --git a/stdio/getw.c b/stdio-common/getw.c similarity index 100% rename from stdio/getw.c rename to stdio-common/getw.c diff --git a/stdio/perror.c b/stdio-common/perror.c similarity index 100% rename from stdio/perror.c rename to stdio-common/perror.c diff --git a/stdio/printf-parse.h b/stdio-common/printf-parse.h similarity index 100% rename from stdio/printf-parse.h rename to stdio-common/printf-parse.h diff --git a/stdio/printf-prs.c b/stdio-common/printf-prs.c similarity index 100% rename from stdio/printf-prs.c rename to stdio-common/printf-prs.c diff --git a/stdio/printf.c b/stdio-common/printf.c similarity index 80% rename from stdio/printf.c rename to stdio-common/printf.c index 9cdae76..d8aa895 100644 --- a/stdio/printf.c +++ b/stdio-common/printf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,22 +16,25 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #include +#ifdef USE_IN_LIBIO +# define vprintf _IO_vprintf +#endif /* Write formatted output to stdout from the format string FORMAT. */ /* VARARGS1 */ int -DEFUN(printf, (format), CONST char *format DOTS) +printf (format) + const char *format; { va_list arg; int done; - va_start(arg, format); - done = vprintf(format, arg); - va_end(arg); + va_start (arg, format); + done = vprintf (format, arg); + va_end (arg); return done; } diff --git a/stdio/printf.h b/stdio-common/printf.h similarity index 100% rename from stdio/printf.h rename to stdio-common/printf.h diff --git a/stdio/printf_fp.c b/stdio-common/printf_fp.c similarity index 100% rename from stdio/printf_fp.c rename to stdio-common/printf_fp.c diff --git a/stdio/psignal.c b/stdio-common/psignal.c similarity index 100% rename from stdio/psignal.c rename to stdio-common/psignal.c diff --git a/stdio/putw.c b/stdio-common/putw.c similarity index 100% rename from stdio/putw.c rename to stdio-common/putw.c diff --git a/stdio/reg-printf.c b/stdio-common/reg-printf.c similarity index 100% rename from stdio/reg-printf.c rename to stdio-common/reg-printf.c diff --git a/stdio/scanf.c b/stdio-common/scanf.c similarity index 80% rename from stdio/scanf.c rename to stdio-common/scanf.c index aa70215..cf43363 100644 --- a/stdio/scanf.c +++ b/stdio-common/scanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,22 +16,25 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #include +#ifdef USE_IN_LIBIO +# define vscanf _IO_vscanf +#endif /* Read formatted input from stdin according to the format string FORMAT. */ /* VARARGS1 */ int -DEFUN(scanf, (format), CONST char *format DOTS) +scanf (format) + const char *format; { va_list arg; int done; - va_start(arg, format); - done = vscanf(format, arg); - va_end(arg); + va_start (arg, format); + done = vscanf (format, arg); + va_end (arg); return done; } diff --git a/stdio/snprintf.c b/stdio-common/snprintf.c similarity index 77% rename from stdio/snprintf.c rename to stdio-common/snprintf.c index 9f3e0c4..00b85f3 100644 --- a/stdio/snprintf.c +++ b/stdio-common/snprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,24 +16,28 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #include +#ifdef USE_IN_LIBIO +# define vsnprintf _IO_vsnprintf +#endif /* Write formatted output into S, according to the format string FORMAT, writing no more than MAXLEN characters. */ /* VARARGS3 */ int -DEFUN(snprintf, (s, maxlen, format), - char *s AND size_t maxlen AND CONST char *format DOTS) +snprintf (s, maxlen, format) + char *s; + size_t maxlen; + const char *format; { va_list arg; int done; - va_start(arg, format); - done = vsnprintf(s, maxlen, format, arg); - va_end(arg); + va_start (arg, format); + done = vsnprintf (s, maxlen, format, arg); + va_end (arg); return done; } diff --git a/stdio/sprintf.c b/stdio-common/sprintf.c similarity index 79% rename from stdio/sprintf.c rename to stdio-common/sprintf.c index ce3a970..9cfc89c 100644 --- a/stdio/sprintf.c +++ b/stdio-common/sprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,22 +16,26 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #include +#ifdef USE_IN_LIBIO +# define vsprintf _IO_vsprintf +#endif /* Write formatted output into S, according to the format string FORMAT. */ /* VARARGS2 */ int -DEFUN(sprintf, (s, format), char *s AND CONST char *format DOTS) +sprintf (s, format) + char *s; + const char *format; { va_list arg; int done; - va_start(arg, format); - done = vsprintf(s, format, arg); - va_end(arg); + va_start (arg, format); + done = vsprintf (s, format, arg); + va_end (arg); return done; } diff --git a/stdio/sscanf.c b/stdio-common/sscanf.c similarity index 78% rename from stdio/sscanf.c rename to stdio-common/sscanf.c index 33bc203..794a3ce 100644 --- a/stdio/sscanf.c +++ b/stdio-common/sscanf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,22 +16,26 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #include +#ifdef USE_IN_LIBIO +# define __vsscanf _IO_vsscanf +#endif /* Read formatted input from S, according to the format string FORMAT. */ /* VARARGS2 */ int -DEFUN(sscanf, (s, format), CONST char *s AND CONST char *format DOTS) +sscanf (s, format) + const char *s; + const char *format; { va_list arg; int done; - va_start(arg, format); - done = __vsscanf(s, format, arg); - va_end(arg); + va_start (arg, format); + done = __vsscanf (s, format, arg); + va_end (arg); return done; } diff --git a/stdio/tempnam.c b/stdio-common/tempnam.c similarity index 100% rename from stdio/tempnam.c rename to stdio-common/tempnam.c diff --git a/stdio/temptest.c b/stdio-common/temptest.c similarity index 100% rename from stdio/temptest.c rename to stdio-common/temptest.c diff --git a/stdio/test-fseek.c b/stdio-common/test-fseek.c similarity index 100% rename from stdio/test-fseek.c rename to stdio-common/test-fseek.c diff --git a/stdio/test-fwrite.c b/stdio-common/test-fwrite.c similarity index 100% rename from stdio/test-fwrite.c rename to stdio-common/test-fwrite.c diff --git a/stdio/test-popen.c b/stdio-common/test-popen.c similarity index 100% rename from stdio/test-popen.c rename to stdio-common/test-popen.c diff --git a/stdio/test_rdwr.c b/stdio-common/test_rdwr.c similarity index 100% rename from stdio/test_rdwr.c rename to stdio-common/test_rdwr.c diff --git a/stdio/tmpfile.c b/stdio-common/tmpfile.c similarity index 100% rename from stdio/tmpfile.c rename to stdio-common/tmpfile.c diff --git a/stdio/tmpnam.c b/stdio-common/tmpnam.c similarity index 100% rename from stdio/tmpnam.c rename to stdio-common/tmpnam.c diff --git a/stdio/tst-fileno.c b/stdio-common/tst-fileno.c similarity index 100% rename from stdio/tst-fileno.c rename to stdio-common/tst-fileno.c diff --git a/stdio/tst-printf.c b/stdio-common/tst-printf.c similarity index 100% rename from stdio/tst-printf.c rename to stdio-common/tst-printf.c diff --git a/stdio/tstgetln.c b/stdio-common/tstgetln.c similarity index 100% rename from stdio/tstgetln.c rename to stdio-common/tstgetln.c diff --git a/stdio/tstgetln.input b/stdio-common/tstgetln.input similarity index 100% rename from stdio/tstgetln.input rename to stdio-common/tstgetln.input diff --git a/stdio/tstscanf.c b/stdio-common/tstscanf.c similarity index 100% rename from stdio/tstscanf.c rename to stdio-common/tstscanf.c diff --git a/stdio/tstscanf.input b/stdio-common/tstscanf.input similarity index 100% rename from stdio/tstscanf.input rename to stdio-common/tstscanf.input diff --git a/stdio/vasprintf.c b/stdio-common/vasprintf.c similarity index 100% rename from stdio/vasprintf.c rename to stdio-common/vasprintf.c diff --git a/stdio/vdprintf.c b/stdio-common/vdprintf.c similarity index 100% rename from stdio/vdprintf.c rename to stdio-common/vdprintf.c diff --git a/stdio/vfprintf.c b/stdio-common/vfprintf.c similarity index 100% rename from stdio/vfprintf.c rename to stdio-common/vfprintf.c diff --git a/stdio/vfscanf.c b/stdio-common/vfscanf.c similarity index 100% rename from stdio/vfscanf.c rename to stdio-common/vfscanf.c diff --git a/stdio/vprintf.c b/stdio-common/vprintf.c similarity index 84% rename from stdio/vprintf.c rename to stdio-common/vprintf.c index 97264f4..77f1da4 100644 --- a/stdio/vprintf.c +++ b/stdio-common/vprintf.c @@ -1,4 +1,4 @@ -/* Copyright (C) 1991, 1993 Free Software Foundation, Inc. +/* Copyright (C) 1991, 1993, 1995 Free Software Foundation, Inc. This file is part of the GNU C Library. The GNU C Library is free software; you can redistribute it and/or @@ -16,18 +16,22 @@ License along with the GNU C Library; see the file COPYING.LIB. If not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ -#include #include #undef __OPTIMIZE__ /* Avoid inline `vprintf' function. */ #include #undef vprintf +#ifdef USE_IN_LIBIO +# define vfprintf _IO_vfprintf +#endif /* Write formatted output to stdout according to the format string FORMAT, using the argument list in ARG. */ int -DEFUN(vprintf, (format, arg), CONST char *format AND __gnuc_va_list arg) +vprintf (format, arg) + const char *format; + __gnuc_va_list arg; { return vfprintf (stdout, format, arg); } diff --git a/stdio/vscanf.c b/stdio-common/vscanf.c similarity index 100% rename from stdio/vscanf.c rename to stdio-common/vscanf.c diff --git a/stdio/vsnprintf.c b/stdio-common/vsnprintf.c similarity index 100% rename from stdio/vsnprintf.c rename to stdio-common/vsnprintf.c diff --git a/stdio/vsprintf.c b/stdio-common/vsprintf.c similarity index 100% rename from stdio/vsprintf.c rename to stdio-common/vsprintf.c diff --git a/stdio/vsscanf.c b/stdio-common/vsscanf.c similarity index 100% rename from stdio/vsscanf.c rename to stdio-common/vsscanf.c diff --git a/stdio/xbug.c b/stdio-common/xbug.c similarity index 100% rename from stdio/xbug.c rename to stdio-common/xbug.c diff --git a/stdio.h b/stdio.h index a82be07..457eabe 100644 --- a/stdio.h +++ b/stdio.h @@ -1 +1,5 @@ +#ifdef USE_IN_LIBIO +#include +#else #include +#endif diff --git a/stdio/Makefile b/stdio/Makefile index 955d7f1..a15aa56 100644 --- a/stdio/Makefile +++ b/stdio/Makefile @@ -21,39 +21,23 @@ # subdir := stdio -headers := stdio.h stdio_lim.h printf.h +headers := stdio.h routines := \ - ctermid cuserid \ feof ferror clearerr fileno \ newstream fopen freopen fdopen fopncook fmemopen \ setbuf setvbuf setbuffer setlinebuf \ fseek ftell rewind fgetpos fsetpos \ - vfprintf vprintf printf_fp reg-printf printf-prs _itoa \ - vsnprintf vsprintf vasprintf \ - fprintf printf snprintf sprintf asprintf \ - dprintf vdprintf \ - vfscanf vscanf vsscanf \ - fscanf scanf sscanf \ fread fwrite \ ungetc \ - fgetc getc getchar getw \ - fputc putc putchar putw \ + fgetc getc getchar \ + fputc putc putchar \ fgets gets fputs puts \ - getdelim getline \ - perror psignal \ - tmpfile tmpnam tempnam tempname \ + getdelim \ fclose fflush \ - remove rename \ memstream obstream \ internals sysd-stdio pipestream stdio_init libc_fatal -aux := errlist siglist defs glue -distribute := _itoa.h printf-parse.h - -tests := tst-printf tstscanf test_rdwr test-popen tstgetln test-fseek \ - temptest tst-fileno test-fwrite \ - xbug errnobug \ - bug1 bug2 bug3 bug4 bug5 bug6 bug7 +aux := defs glue include ../Rules diff --git a/sysdeps/generic/Makefile b/sysdeps/generic/Makefile index b80b073..1315a26 100644 --- a/sysdeps/generic/Makefile +++ b/sysdeps/generic/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1992, 1993, 1994 Free Software Foundation, Inc. +# Copyright (C) 1992, 1993, 1994, 1995 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -42,7 +42,7 @@ common-generated := $(common-generated) bytesex.h det_endian endif -ifeq ($(subdir),stdio) +ifeq ($(subdir),stdio-common) ifeq "$(filter $(objpfx)siglist.c,$(before-compile))" "" before-compile := $(before-compile) $(objpfx)siglist.c -- 2.7.4