1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-30 22:43:12 +03:00

Remove use of INTDEF/INTUSE in libio

This commit is contained in:
Andreas Schwab
2012-05-23 13:33:15 +02:00
parent c14874927b
commit d18ea0c5e6
98 changed files with 801 additions and 729 deletions

View File

@ -40,10 +40,10 @@
#include <rpc/xdr.h>
#include <libio/iolibio.h>
#define fflush(s) INTUSE(_IO_fflush) (s)
#define fread(p, m, n, s) INTUSE(_IO_fread) (p, m, n, s)
#define ftell(s) INTUSE(_IO_ftell) (s)
#define fwrite(p, m, n, s) INTUSE(_IO_fwrite) (p, m, n, s)
#define fflush(s) _IO_fflush (s)
#define fread(p, m, n, s) _IO_fread (p, m, n, s)
#define ftell(s) _IO_ftell (s)
#define fwrite(p, m, n, s) _IO_fwrite (p, m, n, s)
static bool_t xdrstdio_getlong (XDR *, long *);
static bool_t xdrstdio_putlong (XDR *, const long *);