diff options
Diffstat (limited to 'stdio-common/printf_size.c')
-rw-r--r-- | stdio-common/printf_size.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/stdio-common/printf_size.c b/stdio-common/printf_size.c index 520b6b1e9a..7e073c50d4 100644 --- a/stdio-common/printf_size.c +++ b/stdio-common/printf_size.c @@ -24,18 +24,12 @@ #include <printf.h> #include <libioP.h> - -/* This defines make it possible to use the same code for GNU C library and - the GNU I/O library. */ #define PUT(f, s, n) _IO_sputn (f, s, n) #define PAD(f, c, n) (wide ? _IO_wpadn (f, c, n) : _IO_padn (f, c, n)) -/* We use this file GNU C library and GNU I/O library. So make - names equal. */ #undef putc #define putc(c, f) (wide \ ? (int)_IO_putwc_unlocked (c, f) : _IO_putc_unlocked (c, f)) -#define size_t _IO_size_t -#define FILE _IO_FILE + /* Macros for doing the actual output. */ |