Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 22 Jun 1996 03:34:34 -0700 (PDT)
From:      James Raynard <jraynard>
To:        CVS-committers, cvs-all, cvs-lib
Subject:   cvs commit:  src/lib/libc/stdio clrerr.c fclose.c feof.c ferror.c fflush.c fgetc.c fgetln.c fgetpos.c fgets.c fileno.c findfp.c flags.c fprintf.c fpurge.c fputc.c fputs.c fread.c fscanf.c fseek.c fsetpos.c ftell.c fvwrite.c fwalk.c fwrite.c getc.c getchar.c gets.c getw.c mktemp.c printf.c putc.c putchar.c puts.c putw.c refill.c remove.c rewind.c rget.c scanf.c setbuffer.c setvbuf.c snprintf.c sprintf.c sscanf.c stdio.c tempnam.c ungetc.c vasprintf.c vfprintf.c vfscanf.c vprintf.c vscanf.c vsnprintf.c vsprintf.c vsscanf.c wbuf.c wsetup.c
Message-ID:  <199606221034.DAA02837@freefall.freebsd.org>

next in thread | raw e-mail | index | archive | help
jraynard    96/06/22 03:34:33

  Modified:    lib/libc/stdio  clrerr.c fclose.c feof.c ferror.c fflush.c
                        fgetc.c fgetln.c  fgetpos.c fgets.c fileno.c
                        findfp.c flags.c fprintf.c fpurge.c  fputc.c
                        fputs.c fread.c fscanf.c fseek.c fsetpos.c ftell.c 
                        fvwrite.c fwalk.c fwrite.c getc.c getchar.c gets.c
                        getw.c  mktemp.c printf.c putc.c putchar.c puts.c
                        putw.c refill.c  remove.c rewind.c rget.c scanf.c
                        setbuffer.c setvbuf.c  snprintf.c sprintf.c
                        sscanf.c stdio.c tempnam.c ungetc.c  vasprintf.c
                        vfprintf.c vfscanf.c vprintf.c vscanf.c 
                        vsnprintf.c vsprintf.c vsscanf.c wbuf.c wsetup.c
  Log:
  Suggested by: Bruce Evans, Jeffrey Hsu, Gary Palmer
  
  Added $Id$'s to files that were lacking them (gpalmer), made some
  cosmetic changes to conform to style guidelines (bde) and checked
  against NetBSD and Lite2 to remove unnecessary divergences (hsu, bde)
  
  One last code cleanup:-
  
  Removed spurious casts in fseek.c and stdio.c.
  Added missing function argument in fwalk.c.
  Added missing header include in flags.c and rget.c.
  Put in casts where int's were being passed as size_t's.
  Put in missing prototypes for static functions.
  Changed second args of __sflags() inflags.c and writehook() in vasprintf.c
  from char * to const char * to conform to prototypes.
  
  This directory now compiles with no warnings with -Wall under
  gcc-2.6.3 and with considerably less warnings than before with the
  ultra-pedantic script I used for testing. (Most of the remaining ones
  are due to const poisoning).
  
  Revision  Changes    Path
  1.3       +4 -0      src/lib/libc/stdio/clrerr.c
  1.3       +4 -0      src/lib/libc/stdio/fclose.c
  1.3       +6 -2      src/lib/libc/stdio/feof.c
  1.3       +6 -1      src/lib/libc/stdio/ferror.c
  1.3       +4 -0      src/lib/libc/stdio/fflush.c
  1.3       +4 -0      src/lib/libc/stdio/fgetc.c
  1.3       +8 -3      src/lib/libc/stdio/fgetln.c
  1.3       +4 -0      src/lib/libc/stdio/fgetpos.c
  1.5       +5 -1      src/lib/libc/stdio/fgets.c
  1.3       +6 -1      src/lib/libc/stdio/fileno.c
  1.3       +6 -0      src/lib/libc/stdio/findfp.c
  1.3       +8 -2      src/lib/libc/stdio/flags.c
  1.3       +6 -1      src/lib/libc/stdio/fprintf.c
  1.3       +4 -0      src/lib/libc/stdio/fpurge.c
  1.3       +4 -0      src/lib/libc/stdio/fputc.c
  1.3       +4 -0      src/lib/libc/stdio/fputs.c
  1.3       +4 -0      src/lib/libc/stdio/fread.c
  1.3       +4 -0      src/lib/libc/stdio/fscanf.c
  1.4       +5 -1      src/lib/libc/stdio/fseek.c
  1.3       +6 -1      src/lib/libc/stdio/fsetpos.c
  1.5       +4 -0      src/lib/libc/stdio/ftell.c
  1.3       +6 -1      src/lib/libc/stdio/fvwrite.c
  1.3       +7 -2      src/lib/libc/stdio/fwalk.c
  1.3       +4 -0      src/lib/libc/stdio/fwrite.c
  1.3       +4 -0      src/lib/libc/stdio/getc.c
  1.3       +4 -0      src/lib/libc/stdio/getchar.c
  1.4       +4 -0      src/lib/libc/stdio/gets.c
  1.3       +6 -1      src/lib/libc/stdio/getw.c
  1.4       +9 -4      src/lib/libc/stdio/mktemp.c
  1.3       +6 -1      src/lib/libc/stdio/printf.c
  1.3       +4 -0      src/lib/libc/stdio/putc.c
  1.3       +4 -0      src/lib/libc/stdio/putchar.c
  1.3       +4 -0      src/lib/libc/stdio/puts.c
  1.3       +4 -0      src/lib/libc/stdio/putw.c
  1.3       +10 -3     src/lib/libc/stdio/refill.c
  1.3       +6 -1      src/lib/libc/stdio/remove.c
  1.3       +4 -0      src/lib/libc/stdio/rewind.c
  1.2       +9 -1      src/lib/libc/stdio/rget.c
  1.3       +4 -0      src/lib/libc/stdio/scanf.c
  1.2       +5 -1      src/lib/libc/stdio/setbuffer.c
  1.3       +4 -0      src/lib/libc/stdio/setvbuf.c
  1.3       +4 -0      src/lib/libc/stdio/snprintf.c
  1.3       +5 -2      src/lib/libc/stdio/sprintf.c
  1.3       +6 -0      src/lib/libc/stdio/sscanf.c
  1.4       +13 -6     src/lib/libc/stdio/stdio.c
  1.3       +5 -0      src/lib/libc/stdio/tempnam.c
  1.3       +7 -1      src/lib/libc/stdio/ungetc.c
  1.2       +7 -5      src/lib/libc/stdio/vasprintf.c
  1.9       +10 -1     src/lib/libc/stdio/vfprintf.c
  1.3       +9 -4      src/lib/libc/stdio/vfscanf.c
  1.3       +6 -1      src/lib/libc/stdio/vprintf.c
  1.3       +4 -0      src/lib/libc/stdio/vscanf.c
  1.3       +4 -0      src/lib/libc/stdio/vsnprintf.c
  1.3       +4 -0      src/lib/libc/stdio/vsprintf.c
  1.4       +7 -0      src/lib/libc/stdio/vsscanf.c
  1.3       +6 -1      src/lib/libc/stdio/wbuf.c
  1.3       +6 -1      src/lib/libc/stdio/wsetup.c



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199606221034.DAA02837>