Need <string.h> for LP64 systems.
This commit is contained in:
parent
1a710b9899
commit
c444e0d694
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: rpc_soc.c,v 1.3 2000/06/03 14:30:11 fvdl Exp $ */
|
||||
/* $NetBSD: rpc_soc.c,v 1.4 2000/06/04 04:35:13 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
||||
|
@ -67,6 +67,7 @@ static char sccsid[] = "@(#)rpc_soc.c 1.41 89/05/02 Copyr 1988 Sun Micro";
|
|||
#include <errno.h>
|
||||
#include <syslog.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include "rpc_com.h"
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: svc_dg.c,v 1.1 2000/06/02 23:11:16 fvdl Exp $ */
|
||||
/* $NetBSD: svc_dg.c,v 1.2 2000/06/04 04:35:13 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
||||
|
@ -51,6 +51,7 @@
|
|||
#include <unistd.h>
|
||||
#include <stdio.h>
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#ifdef RPC_CACHE_DEBUG
|
||||
#include <netconfig.h>
|
||||
#include <netdir.h>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $NetBSD: svc_run.c,v 1.15 2000/06/02 23:11:16 fvdl Exp $ */
|
||||
/* $NetBSD: svc_run.c,v 1.16 2000/06/04 04:35:14 thorpej Exp $ */
|
||||
|
||||
/*
|
||||
* Sun RPC is a product of Sun Microsystems, Inc. and is provided for
|
||||
|
@ -35,7 +35,7 @@
|
|||
static char *sccsid = "@(#)svc_run.c 1.1 87/10/13 Copyr 1984 Sun Micro";
|
||||
static char *sccsid = "@(#)svc_run.c 2.1 88/07/29 4.0 RPCSRC";
|
||||
#else
|
||||
__RCSID("$NetBSD: svc_run.c,v 1.15 2000/06/02 23:11:16 fvdl Exp $");
|
||||
__RCSID("$NetBSD: svc_run.c,v 1.16 2000/06/04 04:35:14 thorpej Exp $");
|
||||
#endif
|
||||
#endif
|
||||
|
||||
|
@ -48,6 +48,7 @@ __RCSID("$NetBSD: svc_run.c,v 1.15 2000/06/02 23:11:16 fvdl Exp $");
|
|||
#include <err.h>
|
||||
#include <errno.h>
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
|
||||
#include <rpc/rpc.h>
|
||||
|
|
Loading…
Reference in New Issue