aboutsummaryrefslogtreecommitdiff
path: root/usr.bin/hexdump
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>1997-03-11 13:43:33 +0000
committerPeter Wemm <peter@FreeBSD.org>1997-03-11 13:43:33 +0000
commitdf3f5d9dd51fa82a604ec559a75d3791a7b80ed5 (patch)
treeb6c05d5088be1b1275d5422f8b002b9cd42ff1b7 /usr.bin/hexdump
parent18dac96b7bf3831c3d8393ab93b391c2ca65e6a1 (diff)
Notes
Diffstat (limited to 'usr.bin/hexdump')
-rw-r--r--usr.bin/hexdump/hexsyntax.c4
-rw-r--r--usr.bin/hexdump/odsyntax.c8
2 files changed, 8 insertions, 4 deletions
diff --git a/usr.bin/hexdump/hexsyntax.c b/usr.bin/hexdump/hexsyntax.c
index e03804daab398..2c13db228109f 100644
--- a/usr.bin/hexdump/hexsyntax.c
+++ b/usr.bin/hexdump/hexsyntax.c
@@ -32,7 +32,7 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)hexsyntax.c 8.1 (Berkeley) 6/6/93";
+static char sccsid[] = "@(#)hexsyntax.c 8.2 (Berkeley) 5/4/95";
#endif /* not lint */
#include <sys/types.h>
@@ -40,6 +40,8 @@ static char sccsid[] = "@(#)hexsyntax.c 8.1 (Berkeley) 6/6/93";
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <unistd.h>
+
#include "hexdump.h"
off_t skip; /* bytes to skip */
diff --git a/usr.bin/hexdump/odsyntax.c b/usr.bin/hexdump/odsyntax.c
index 642f6c244c366..b6143f0ae3691 100644
--- a/usr.bin/hexdump/odsyntax.c
+++ b/usr.bin/hexdump/odsyntax.c
@@ -32,14 +32,16 @@
*/
#ifndef lint
-static char sccsid[] = "@(#)odsyntax.c 8.1 (Berkeley) 6/6/93";
+static char sccsid[] = "@(#)odsyntax.c 8.2 (Berkeley) 5/4/95";
#endif /* not lint */
#include <sys/types.h>
-#include <stdlib.h>
-#include <stdio.h>
#include <ctype.h>
+#include <stdio.h>
+#include <stdlib.h>
+#include <unistd.h>
+
#include "hexdump.h"
int deprecated;