diff options
author | Artur Grabowski <art@cvs.openbsd.org> | 1999-08-16 19:57:38 +0000 |
---|---|---|
committer | Artur Grabowski <art@cvs.openbsd.org> | 1999-08-16 19:57:38 +0000 |
commit | 4ca7cdc160130b43af0c23044fcc6764ef521b7f (patch) | |
tree | 8dc9f4380d9af52c7eb8cc0f24609d4f813fb3e9 | |
parent | 3331eaa386331f2e7cafaf9d68dd31118b7040be (diff) |
fix includes
-rw-r--r-- | usr.bin/what/what.c | 6 |
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 *)); |