From 799dbaaffc8e5fad26d7dfc5497412e894a9fd40 Mon Sep 17 00:00:00 2001 From: "Jordan K. Hubbard" Date: Wed, 1 Jan 1997 10:06:37 +0000 Subject: [PATCH] Eliminate unnecessary warning introduced by a missing forward declaration. --- lib/libc/rpc/svc.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c index ab0e8c164bc..11a9c95210f 100644 --- a/lib/libc/rpc/svc.c +++ b/lib/libc/rpc/svc.c @@ -30,7 +30,7 @@ #if defined(LIBC_SCCS) && !defined(lint) /*static char *sccsid = "from: @(#)svc.c 1.44 88/02/08 Copyr 1984 Sun Micro";*/ /*static char *sccsid = "from: @(#)svc.c 2.4 88/08/11 4.0 RPCSRC";*/ -static char *rcsid = "$Id: svc.c,v 1.7 1996/12/30 15:07:33 peter Exp $"; +static char *rcsid = "$Id: svc.c,v 1.8 1996/12/31 09:16:12 peter Exp $"; #endif /* @@ -401,6 +401,8 @@ svc_getreq(rdfds) svc_getreqset(&readfds); } +extern void svc_getreqset2(fd_set *, int); + void svc_getreqset(readfds) fd_set *readfds;