diff options
Diffstat (limited to 'stdio-common/printf_fphex.c')
-rw-r--r-- | stdio-common/printf_fphex.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/stdio-common/printf_fphex.c b/stdio-common/printf_fphex.c index 002a7e1fec..df3956316d 100644 --- a/stdio-common/printf_fphex.c +++ b/stdio-common/printf_fphex.c @@ -43,18 +43,13 @@ /* #define NDEBUG 1*/ /* Undefine this for debugging assertions. */ #include <assert.h> -/* This defines make it possible to use the same code for GNU C library and - the GNU I/O library. */ #include <libioP.h> #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. */ |