diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 21:38:57 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-12-13 21:38:57 +0000 |
commit | f32600208f4e9db972eb47f7d4959994b31199e6 (patch) | |
tree | 2a9b75b74b8cf126b816ee32a36727977b5c3de3 /libc/inet/rpc | |
parent | 01015a4321d2af6b665a90a20ea349f02bde6f81 (diff) |
Convert all users of earlier hiddens
Diffstat (limited to 'libc/inet/rpc')
-rw-r--r-- | libc/inet/rpc/rcmd.c | 2 | ||||
-rw-r--r-- | libc/inet/rpc/xdr_rec.c | 2 | ||||
-rw-r--r-- | libc/inet/rpc/xdr_stdio.c | 2 |
3 files changed, 4 insertions, 2 deletions
diff --git a/libc/inet/rpc/rcmd.c b/libc/inet/rpc/rcmd.c index 36e942f9e..d43bd0663 100644 --- a/libc/inet/rpc/rcmd.c +++ b/libc/inet/rpc/rcmd.c @@ -169,7 +169,7 @@ int rcmd(ahost, rport, locuser, remuser, cmd, fd2p) sigsetmask(oldmask); /* sigsetmask */ return -1; } - fcntl(s, F_SETOWN, pid); /* __fcntl */ + __fcntl(s, F_SETOWN, pid); /* __fcntl */ sin.sin_family = hp->h_addrtype; bcopy(hp->h_addr_list[0], &sin.sin_addr, MIN (sizeof (sin.sin_addr), hp->h_length)); diff --git a/libc/inet/rpc/xdr_rec.c b/libc/inet/rpc/xdr_rec.c index a8d95e162..a19438489 100644 --- a/libc/inet/rpc/xdr_rec.c +++ b/libc/inet/rpc/xdr_rec.c @@ -317,7 +317,7 @@ xdrrec_getpos (const XDR *xdrs) RECSTREAM *rstrm = (RECSTREAM *) xdrs->x_private; long pos; - pos = lseek ((int) (long) rstrm->tcp_handle, (long) 0, 1); + pos = __lseek ((int) (long) rstrm->tcp_handle, (long) 0, 1); if (pos != -1) switch (xdrs->x_op) { diff --git a/libc/inet/rpc/xdr_stdio.c b/libc/inet/rpc/xdr_stdio.c index bd9ee4f1b..fe2a53dd0 100644 --- a/libc/inet/rpc/xdr_stdio.c +++ b/libc/inet/rpc/xdr_stdio.c @@ -39,6 +39,8 @@ #define fread __fread #define fwrite __fwrite +#define fseek __fseek +#define fflush __fflush #include <rpc/types.h> #include <stdio.h> |