clean up stdio_impl.h
authorRich Felker <dalias@aerifal.cx>
Thu, 8 Nov 2012 21:39:41 +0000 (16:39 -0500)
committerRich Felker <dalias@aerifal.cx>
Thu, 8 Nov 2012 21:39:41 +0000 (16:39 -0500)
commit835f9f950e2f6059532bd9ab9857a856ed21a4fd
tree496ea32dceca7e6573a534dfcfab26e322f0a0c6
parent1e717ea3d2a864e00e507f1a70a892c551955f1b
clean up stdio_impl.h

this header evolved to facilitate the extremely lazy practice of
omitting explicit includes of the necessary headers in individual
stdio source files; not only was this sloppy, but it also increased
build time.

now, stdio_impl.h is only including the headers it needs for its own
use; any further headers needed by source files are included directly
where needed.
41 files changed:
src/internal/floatscan.c
src/internal/intscan.c
src/internal/stdio_impl.h
src/stdio/__fdopen.c
src/stdio/__fopen_rb_ca.c
src/stdio/__stdio_read.c
src/stdio/__stdio_write.c
src/stdio/__stdout_write.c
src/stdio/__string_read.c
src/stdio/fgetln.c
src/stdio/fgets.c
src/stdio/fgetwc.c
src/stdio/fgetws.c
src/stdio/fmemopen.c
src/stdio/fopen.c
src/stdio/fputs.c
src/stdio/fputwc.c
src/stdio/fputws.c
src/stdio/fread.c
src/stdio/freopen.c
src/stdio/ftell.c
src/stdio/fwrite.c
src/stdio/getdelim.c
src/stdio/gets.c
src/stdio/getwc.c
src/stdio/getwchar.c
src/stdio/open_memstream.c
src/stdio/open_wmemstream.c
src/stdio/pclose.c
src/stdio/putwc.c
src/stdio/putwchar.c
src/stdio/ungetwc.c
src/stdio/vfprintf.c
src/stdio/vfscanf.c
src/stdio/vfwprintf.c
src/stdio/vsnprintf.c
src/stdio/vswprintf.c
src/stdio/vswscanf.c
src/stdlib/strtol.c
src/stdlib/wcstod.c
src/stdlib/wcstol.c