diff options
author | 1996-11-14 05:45:15 +0000 | |
---|---|---|
committer | 1996-11-14 05:45:15 +0000 | |
commit | 23c468600c9863f98b9b481df9bb9acb84373cac (patch) | |
tree | 1f9c6e534f261d4b4add476a6635a97ca6de17b5 /lib/libc/rpc/auth_unix.c | |
parent | Include <machine/types.h> for now. (diff) | |
download | wireguard-openbsd-23c468600c9863f98b9b481df9bb9acb84373cac.tar.xz wireguard-openbsd-23c468600c9863f98b9b481df9bb9acb84373cac.zip |
memcpy needs proto from string.h.
Diffstat (limited to 'lib/libc/rpc/auth_unix.c')
-rw-r--r-- | lib/libc/rpc/auth_unix.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/rpc/auth_unix.c b/lib/libc/rpc/auth_unix.c index 74f66c184cb..47273617f8a 100644 --- a/lib/libc/rpc/auth_unix.c +++ b/lib/libc/rpc/auth_unix.c @@ -28,7 +28,7 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char *rcsid = "$OpenBSD: auth_unix.c,v 1.5 1996/09/15 09:31:29 tholo Exp $"; +static char *rcsid = "$OpenBSD: auth_unix.c,v 1.6 1996/11/14 05:45:16 etheisen Exp $"; #endif /* LIBC_SCCS and not lint */ /* @@ -46,6 +46,7 @@ static char *rcsid = "$OpenBSD: auth_unix.c,v 1.5 1996/09/15 09:31:29 tholo Exp #include <stdio.h> #include <stdlib.h> #include <unistd.h> +#include <string.h> #include <rpc/types.h> #include <rpc/xdr.h> |