diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-10 15:05:28 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 1998-07-10 15:05:28 +0000 |
commit | 88d931f35a731adb533dcf367837ff5949637d86 (patch) | |
tree | 5e01dbc640d99214c193b12c33c9a0aad47bd780 /usr.bin/file/ascmagic.c | |
parent | 0ed8ac719d88afe131759970558dcb7530ab0e49 (diff) |
err/warn
Diffstat (limited to 'usr.bin/file/ascmagic.c')
-rw-r--r-- | usr.bin/file/ascmagic.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/file/ascmagic.c b/usr.bin/file/ascmagic.c index 9caa50eff7b..73958d23773 100644 --- a/usr.bin/file/ascmagic.c +++ b/usr.bin/file/ascmagic.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ascmagic.c,v 1.3 1997/02/09 23:58:18 millert Exp $ */ +/* $OpenBSD: ascmagic.c,v 1.4 1998/07/10 15:05:15 mickey Exp $ */ /* * ASCII magic -- file types that we know based on keywords @@ -33,11 +33,12 @@ #include <ctype.h> #include <stdlib.h> #include <unistd.h> +#include <err.h> #include "file.h" #include "names.h" #ifndef lint -static char *moduleid = "$OpenBSD: ascmagic.c,v 1.3 1997/02/09 23:58:18 millert Exp $"; +static char *moduleid = "$OpenBSD: ascmagic.c,v 1.4 1998/07/10 15:05:15 mickey Exp $"; #endif /* lint */ /* an optimisation over plain strcmp() */ |