diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 21:11:26 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2003-06-25 21:11:26 +0000 |
commit | 050c7e8a628282e2ab453bedf3d05f9d9bb7e488 (patch) | |
tree | cb48f586e879393fcfa3bcb4618385cd2660ca89 /usr.bin/checknr | |
parent | 9492ac81c03196dcb3cc04a5cf2730b2b4cfc9ed (diff) |
protos
Diffstat (limited to 'usr.bin/checknr')
-rw-r--r-- | usr.bin/checknr/checknr.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/checknr/checknr.c b/usr.bin/checknr/checknr.c index 55ea439326d..d42ef90f041 100644 --- a/usr.bin/checknr/checknr.c +++ b/usr.bin/checknr/checknr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: checknr.c,v 1.10 2003/06/10 22:20:45 deraadt Exp $ */ +/* $OpenBSD: checknr.c,v 1.11 2003/06/25 21:09:09 deraadt Exp $ */ /* $NetBSD: checknr.c,v 1.4 1995/03/26 04:10:19 glass Exp $ */ /* @@ -40,7 +40,7 @@ static char copyright[] = #if 0 static char sccsid[] = "@(#)checknr.c 8.1 (Berkeley) 6/6/93"; #else -static char rcsid[] = "$OpenBSD: checknr.c,v 1.10 2003/06/10 22:20:45 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: checknr.c,v 1.11 2003/06/25 21:09:09 deraadt Exp $"; #endif #endif /* not lint */ @@ -53,6 +53,8 @@ static char rcsid[] = "$OpenBSD: checknr.c,v 1.10 2003/06/10 22:20:45 deraadt Ex */ #include <stdio.h> #include <string.h> +#include <stdlib.h> +#include <unistd.h> #include <ctype.h> #define MAXSTK 100 /* Stack size */ @@ -188,8 +190,6 @@ int sflag; /* -s: ignore \s */ int ncmds; /* size of knowncmds */ int slot; /* slot in knowncmds found by binsrch */ -char *malloc(); - int main(int argc, char *argv[]) { |