diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 05:45:17 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 05:45:17 +0000 |
commit | 2385180027ae8b6f50e66186857248f392f90e2d (patch) | |
tree | e1c2234ca750a47fe6637970fcd75c09ce65a18a | |
parent | cc5d8372b9269722d546ec5e90d60768845cff6a (diff) |
memcpy needs proto from string.h.
-rw-r--r-- | lib/libc/crypt/morecrypt.c | 3 | ||||
-rw-r--r-- | lib/libc/rpc/auth_unix.c | 3 |
2 files changed, 4 insertions, 2 deletions
diff --git a/lib/libc/crypt/morecrypt.c b/lib/libc/crypt/morecrypt.c index 0ce7ac74bcb..2bf7d21c383 100644 --- a/lib/libc/crypt/morecrypt.c +++ b/lib/libc/crypt/morecrypt.c @@ -51,12 +51,13 @@ */ #if defined(LIBC_SCCS) && !defined(lint) -static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.6 1996/08/19 08:19:51 tholo Exp $"; +static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.7 1996/11/14 05:45:15 etheisen Exp $"; #endif /* LIBC_SCCS and not lint */ #include <sys/types.h> #include <sys/param.h> #include <pwd.h> +#include <string.h> #ifdef DEBUG # include <stdio.h> 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> |