summaryrefslogtreecommitdiff
path: root/sunrpc
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1995-10-30 16:40:52 +0000
committerRoland McGrath <roland@gnu.org>1995-10-30 16:40:52 +0000
commit3e2ee7271dff697194c7761ca0c5836de486b36f (patch)
tree6da184ffccbf01724c58318afd82310efff9752e /sunrpc
parentf094496c12e93dca23d32031814f3b28e8b9546c (diff)
Thu Oct 26 23:11:11 1995 Ulrich Drepper <drepper@ipd.info.uni-karlsruhe.de>
* sysdeps/unix/sysv/linux/poll.c: Don't define as stub. Use simulation of system call using select. * sysdeps/unix/sysv/linux/signal.c: Use POSIX implementation. * sysdeps/unix/sysv/linux/statbuf.h: Define _STAT_VER. * sysdeps/unix/sysv/linux/i386/sigaction.c: Correct parameter name usage (new->act, old->oact). Correct asm statement because of gcc strangeness. * sysdeps/i386/i586/strchr.S: Correct typos: cmp -> cmpb. * sunrpc/clnt_perr.c: Remove declaration of sys_errlist. They conflict with the ones in stdio.h. * string/tester.c: %Z is no complete format. Change to %Zd. * sysdeps/mach/hurd/symlink.c (__symlink): Ditto.
Diffstat (limited to 'sunrpc')
-rw-r--r--sunrpc/clnt_perr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sunrpc/clnt_perr.c b/sunrpc/clnt_perr.c
index 1876c7f163..4a8c084e13 100644
--- a/sunrpc/clnt_perr.c
+++ b/sunrpc/clnt_perr.c
@@ -43,7 +43,7 @@ static char sccsid[] = "@(#)clnt_perror.c 1.15 87/10/07 Copyr 1984 Sun Micro";
#include <rpc/auth.h>
#include <rpc/clnt.h>
-extern char *sys_errlist[];
+/* extern char *sys_errlist[]; --drepper@gnu */
/* extern char *sprintf(); --roland@gnu */
static char *auth_errmsg();
@@ -230,7 +230,7 @@ clnt_spcreateerror(s)
char *s;
{
extern int sys_nerr;
- extern char *sys_errlist[];
+ /* extern char *sys_errlist[]; --drepper@gnu */
char *str = _buf();
if (str == 0)