diff options
author | 1996-11-14 06:33:11 +0000 | |
---|---|---|
committer | 1996-11-14 06:33:11 +0000 | |
commit | f5c144ac71259eb9802b9b1906b892ceeecdca99 (patch) | |
tree | 50be2f1aaa7531a6ca4593d4e09b42211841f37d /lib/libc/rpc/xdr_mem.c | |
parent | memcpy needs string.h. (diff) | |
download | wireguard-openbsd-f5c144ac71259eb9802b9b1906b892ceeecdca99.tar.xz wireguard-openbsd-f5c144ac71259eb9802b9b1906b892ceeecdca99.zip |
memcpy needs string.h.
Diffstat (limited to 'lib/libc/rpc/xdr_mem.c')
-rw-r--r-- | lib/libc/rpc/xdr_mem.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/rpc/xdr_mem.c b/lib/libc/rpc/xdr_mem.c index cb848cab079..0277b8685f2 100644 --- a/lib/libc/rpc/xdr_mem.c +++ b/lib/libc/rpc/xdr_mem.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: xdr_mem.c,v 1.5 1996/09/15 09:31:43 tholo Exp $"; +static char *rcsid = "$OpenBSD: xdr_mem.c,v 1.6 1996/11/14 06:33:13 etheisen Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -42,6 +42,7 @@ static char *rcsid = "$OpenBSD: xdr_mem.c,v 1.5 1996/09/15 09:31:43 tholo Exp $" * */ +#include <string.h> #include <rpc/types.h> #include <rpc/xdr.h> |