summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authoretheisen <etheisen@openbsd.org>1996-11-14 06:27:18 +0000
committeretheisen <etheisen@openbsd.org>1996-11-14 06:27:18 +0000
commitc6d40fffbdc3359b10c4d9549ed16fb6d046ce3c (patch)
treea8c9dbdb4d527704aa706fdd051ed87a2bc399d6 /lib
parentMore Alpha casts. (diff)
downloadwireguard-openbsd-c6d40fffbdc3359b10c4d9549ed16fb6d046ce3c.tar.xz
wireguard-openbsd-c6d40fffbdc3359b10c4d9549ed16fb6d046ce3c.zip
memcpy needs string.h.
Diffstat (limited to 'lib')
-rw-r--r--lib/libc/rpc/rpc_callmsg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/rpc/rpc_callmsg.c b/lib/libc/rpc/rpc_callmsg.c
index 555d4de17ac..38ee4afcbc6 100644
--- a/lib/libc/rpc/rpc_callmsg.c
+++ b/lib/libc/rpc/rpc_callmsg.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: rpc_callmsg.c,v 1.3 1996/08/19 08:31:45 tholo Exp $";
+static char *rcsid = "$OpenBSD: rpc_callmsg.c,v 1.4 1996/11/14 06:27:18 etheisen Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -39,6 +39,7 @@ static char *rcsid = "$OpenBSD: rpc_callmsg.c,v 1.3 1996/08/19 08:31:45 tholo Ex
*/
#include <stdlib.h>
+#include <string.h>
#include <sys/param.h>
#include <rpc/rpc.h>