summaryrefslogtreecommitdiffstats
path: root/usr.bin/what
diff options
context:
space:
mode:
authorart <art@openbsd.org>1999-08-16 19:57:37 +0000
committerart <art@openbsd.org>1999-08-16 19:57:37 +0000
commitf1beaa941ecf5987ecb2c06cc523ccaae0bf50fb (patch)
treed57506c3fa65dd06867158cedcb88fef7a217344 /usr.bin/what
parentinculde com_err.h (diff)
downloadwireguard-openbsd-f1beaa941ecf5987ecb2c06cc523ccaae0bf50fb.tar.xz
wireguard-openbsd-f1beaa941ecf5987ecb2c06cc523ccaae0bf50fb.zip
fix includes
Diffstat (limited to 'usr.bin/what')
-rw-r--r--usr.bin/what/what.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/what/what.c b/usr.bin/what/what.c
index 41238ad5570..60b0e6ddd8e 100644
--- a/usr.bin/what/what.c
+++ b/usr.bin/what/what.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: what.c,v 1.4 1996/06/26 07:08:36 deraadt Exp $ */
+/* $OpenBSD: what.c,v 1.5 1999/08/16 19:57:37 art Exp $ */
/* $NetBSD: what.c,v 1.4 1994/12/20 16:01:03 jtc Exp $ */
/*
@@ -44,13 +44,15 @@ static char copyright[] =
#if 0
static char sccsid[] = "@(#)what.c 8.1 (Berkeley) 6/6/93";
#endif
-static char rcsid[] = "$OpenBSD: what.c,v 1.4 1996/06/26 07:08:36 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: what.c,v 1.5 1999/08/16 19:57:37 art Exp $";
#endif /* not lint */
#include <sys/types.h>
#include <sys/utsname.h>
#include <stdio.h>
#include <ctype.h>
+#include <err.h>
+#include <string.h>
void search __P((char *));