diff options
author | 1996-05-24 09:19:06 +0000 | |
---|---|---|
committer | 1996-05-24 09:19:06 +0000 | |
commit | 72b496fb8b9dc5596b78dfb3dc2fd93c6cd9a01b (patch) | |
tree | e1c379201b5a952ba5445a238d7427656da963c6 | |
parent | do not print a non-existant mfc (diff) | |
download | wireguard-openbsd-72b496fb8b9dc5596b78dfb3dc2fd93c6cd9a01b.tar.xz wireguard-openbsd-72b496fb8b9dc5596b78dfb3dc2fd93c6cd9a01b.zip |
need string.h
-rw-r--r-- | usr.bin/hexdump/hexdump.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/hexdump/hexdump.c b/usr.bin/hexdump/hexdump.c index e2a47ea70da..cd470c2585e 100644 --- a/usr.bin/hexdump/hexdump.c +++ b/usr.bin/hexdump/hexdump.c @@ -39,11 +39,12 @@ char copyright[] = #ifndef lint /*static char sccsid[] = "from: @(#)hexdump.c 5.5 (Berkeley) 6/1/90";*/ -static char rcsid[] = "$Id: hexdump.c,v 1.2 1996/05/21 21:51:51 deraadt Exp $"; +static char rcsid[] = "$Id: hexdump.c,v 1.3 1996/05/24 09:19:06 deraadt Exp $"; #endif /* not lint */ #include <sys/types.h> #include <stdio.h> +#include <string.h> #include "hexdump.h" FS *fshead; /* head of format strings */ |