diff options
author | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 06:27:19 +0000 |
---|---|---|
committer | etheisen <etheisen@cvs.openbsd.org> | 1996-11-14 06:27:19 +0000 |
commit | a51c348ac152c571fc1d166b2fdad3f4fe52084f (patch) | |
tree | fa2aa250694b2b5f3dcf89b5261a0d8c1f465927 | |
parent | be4f731e5fa03db9781b6456c2339716e8bdd310 (diff) |
memcpy needs string.h.
-rw-r--r-- | lib/libc/rpc/rpc_callmsg.c | 3 |
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> |