summaryrefslogtreecommitdiff
path: root/usr.bin/file
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2003-08-02 18:42:12 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2003-08-02 18:42:12 +0000
commite070d3c363392ac5cc8bcb735eabe9ebe83cdca5 (patch)
treebda8c5fafd2e1ec45d550b0c7f276b2e20687921 /usr.bin/file
parentbfe9347b5a772221c6577a0d2853c5e9a403d088 (diff)
missing include
Diffstat (limited to 'usr.bin/file')
-rw-r--r--usr.bin/file/is_tar.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/file/is_tar.c b/usr.bin/file/is_tar.c
index b8fab275fe1..3a8027f5458 100644
--- a/usr.bin/file/is_tar.c
+++ b/usr.bin/file/is_tar.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: is_tar.c,v 1.5 2002/02/19 19:39:38 millert Exp $ */
+/* $OpenBSD: is_tar.c,v 1.6 2003/08/02 18:42:11 deraadt Exp $ */
/*
* is_tar() -- figure out whether file is a tar archive.
@@ -16,6 +16,7 @@
#include <ctype.h>
#include <sys/types.h>
#include "tar.h"
+#include "file.h"
#define isodigit(c) ( ((c) >= '0') && ((c) <= '7') )