summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoretheisen <>1996-11-14 05:45:15 +0000
committeretheisen <>1996-11-14 05:45:15 +0000
commite3e52056469a50af7d89c552eb0438f1e8cf7b74 (patch)
treeb97235dbbd70430060c6bf3f04394e8b2444b2c5
parent2036abc9d34f5e65a683fc6d270af8504797a422 (diff)
downloadopenbsd-e3e52056469a50af7d89c552eb0438f1e8cf7b74.tar.gz
openbsd-e3e52056469a50af7d89c552eb0438f1e8cf7b74.tar.bz2
openbsd-e3e52056469a50af7d89c552eb0438f1e8cf7b74.zip
memcpy needs proto from string.h.
-rw-r--r--src/lib/libc/crypt/morecrypt.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libc/crypt/morecrypt.c b/src/lib/libc/crypt/morecrypt.c
index 0ce7ac74bc..2bf7d21c38 100644
--- a/src/lib/libc/crypt/morecrypt.c
+++ b/src/lib/libc/crypt/morecrypt.c
@@ -51,12 +51,13 @@
51 */ 51 */
52 52
53#if defined(LIBC_SCCS) && !defined(lint) 53#if defined(LIBC_SCCS) && !defined(lint)
54static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.6 1996/08/19 08:19:51 tholo Exp $"; 54static char rcsid[] = "$OpenBSD: morecrypt.c,v 1.7 1996/11/14 05:45:15 etheisen Exp $";
55#endif /* LIBC_SCCS and not lint */ 55#endif /* LIBC_SCCS and not lint */
56 56
57#include <sys/types.h> 57#include <sys/types.h>
58#include <sys/param.h> 58#include <sys/param.h>
59#include <pwd.h> 59#include <pwd.h>
60#include <string.h>
60 61
61#ifdef DEBUG 62#ifdef DEBUG
62# include <stdio.h> 63# include <stdio.h>