mirror of
https://github.com/opnsense/src.git
synced 2026-04-29 18:32:49 -04:00
Eliminate unnecessary warning introduced by a missing forward declaration.
This commit is contained in:
parent
6c9cfdd2f1
commit
799dbaaffc
1 changed files with 3 additions and 1 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue