summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1996-05-22 12:15:31 +0000
committerderaadt <deraadt@openbsd.org>1996-05-22 12:15:31 +0000
commitf475fce97d633ace6afcf35227fc5e972469bb7f (patch)
tree8e666f0bdb36d726a55d6aa2b180bce9a0194df3 /lib
parentheaders (diff)
downloadwireguard-openbsd-f475fce97d633ace6afcf35227fc5e972469bb7f.tar.xz
wireguard-openbsd-f475fce97d633ace6afcf35227fc5e972469bb7f.zip
need string.h
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/rpc/svc.c5
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>