~ubuntu-branches/ubuntu/precise/eglibc/precise

« back to all changes in this revision

Viewing changes to sunrpc/xdr_stdio.c

  • Committer: Package Import Robot
  • Author(s): Matthias Klose
  • Date: 2011-10-04 17:48:26 UTC
  • mfrom: (216.1.23 oneiric)
  • Revision ID: package-import@ubuntu.com-20111004174826-2cyb9ewn3ucymlsx
Tags: 2.13-20ubuntu5
libc6-dev: Don't break the current {gnat,gcj}-4.4-base versons. LP: #853688.

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
#include <stdio.h>
40
40
#include <rpc/xdr.h>
41
41
 
42
 
#include <libio/iolibio.h>
43
 
#define fflush(s) INTUSE(_IO_fflush) (s)
44
 
#define fread(p, m, n, s) INTUSE(_IO_fread) (p, m, n, s)
45
 
#define ftell(s) INTUSE(_IO_ftell) (s)
46
 
#define fwrite(p, m, n, s) INTUSE(_IO_fwrite) (p, m, n, s)
 
42
#ifdef USE_IN_LIBIO
 
43
# include <libio/iolibio.h>
 
44
# define fflush(s) INTUSE(_IO_fflush) (s)
 
45
# define fread(p, m, n, s) INTUSE(_IO_fread) (p, m, n, s)
 
46
# define ftell(s) INTUSE(_IO_ftell) (s)
 
47
# define fwrite(p, m, n, s) INTUSE(_IO_fwrite) (p, m, n, s)
 
48
#endif
47
49
 
48
50
static bool_t xdrstdio_getlong (XDR *, long *);
49
51
static bool_t xdrstdio_putlong (XDR *, const long *);
188
190
    return FALSE;
189
191
  return TRUE;
190
192
}
191
 
#ifdef EXPORT_RPC_SYMBOLS
 
193
 
192
194
libc_hidden_def (xdrstdio_create)
193
 
#else
194
 
libc_hidden_nolink (xdrstdio_create, GLIBC_2_0)
195
 
#endif