diff options
author | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:06:53 +0000 |
---|---|---|
committer | David Krause <david@cvs.openbsd.org> | 2003-07-10 00:06:53 +0000 |
commit | ff1eebe32bb029e20710e7ca1756911d42d46fbf (patch) | |
tree | 009ea3b0cb6633dd34add944159e34a4915266d3 /usr.bin/arch/arch.c | |
parent | 6c3b78320db59d66733755dd77e5d095dec46f61 (diff) |
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'usr.bin/arch/arch.c')
-rw-r--r-- | usr.bin/arch/arch.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/arch/arch.c b/usr.bin/arch/arch.c index f584f9d7848..3b10faea299 100644 --- a/usr.bin/arch/arch.c +++ b/usr.bin/arch/arch.c @@ -24,7 +24,7 @@ */ #ifndef lint -static char rcsid[] = "$OpenBSD: arch.c,v 1.8 2003/06/10 22:20:44 deraadt Exp $"; +static char rcsid[] = "$OpenBSD: arch.c,v 1.9 2003/07/10 00:06:50 david Exp $"; #endif /* not lint */ #include <sys/param.h> @@ -32,6 +32,8 @@ static char rcsid[] = "$OpenBSD: arch.c,v 1.8 2003/06/10 22:20:44 deraadt Exp $" #include <err.h> #include <locale.h> #include <stdio.h> +#include <stdlib.h> +#include <string.h> #include <unistd.h> static void usage(void); |