diff options
author | 2003-08-02 18:42:11 +0000 | |
---|---|---|
committer | 2003-08-02 18:42:11 +0000 | |
commit | 6a428ce29b4f6a888603d42aae2c551e982084f0 (patch) | |
tree | 55cefccc6e6777821534c97e7caa2c2164a5df26 | |
parent | sync (diff) | |
download | wireguard-openbsd-6a428ce29b4f6a888603d42aae2c551e982084f0.tar.xz wireguard-openbsd-6a428ce29b4f6a888603d42aae2c551e982084f0.zip |
missing include
-rw-r--r-- | usr.bin/file/is_tar.c | 3 |
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') ) |