diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-22 12:15:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-05-22 12:15:32 +0000 |
commit | 6b3a16e467121d75677a5fdb4693dc62081ef4c4 (patch) | |
tree | 0262faaf3fd00984063964c7559bfbbe3b2ce8b0 /lib/libc/rpc/svc.c | |
parent | ceeadbcc7707f277db0cb8fbdacca2efd1c1ca81 (diff) |
need string.h
Diffstat (limited to 'lib/libc/rpc/svc.c')
-rw-r--r-- | lib/libc/rpc/svc.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libc/rpc/svc.c b/lib/libc/rpc/svc.c index 12c42b2ca49..8f1b72192ef 100644 --- a/lib/libc/rpc/svc.c +++ b/lib/libc/rpc/svc.c @@ -1,4 +1,4 @@ -/* $NetBSD: svc.c,v 1.7 1995/02/25 03:01:57 cgd Exp $ */ +/* $NetBSD: svc.c,v 1.9 1996/05/17 00:32:22 jtc Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for @@ -32,7 +32,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 = "$NetBSD: svc.c,v 1.7 1995/02/25 03:01:57 cgd Exp $"; +static char *rcsid = "$NetBSD: svc.c,v 1.9 1996/05/17 00:32:22 jtc Exp $"; #endif /* @@ -46,6 +46,7 @@ static char *rcsid = "$NetBSD: svc.c,v 1.7 1995/02/25 03:01:57 cgd Exp $"; */ #include <stdlib.h> +#include <string.h> #include <sys/errno.h> #include <rpc/rpc.h> |