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:
@ -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 *);
|
||||
|
Reference in New Issue
Block a user