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/systat | |
parent | 6c3b78320db59d66733755dd77e5d095dec46f61 (diff) |
add missing includes
ok deraadt@ tedu@
Diffstat (limited to 'usr.bin/systat')
-rw-r--r-- | usr.bin/systat/keyboard.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/systat/keyboard.c b/usr.bin/systat/keyboard.c index 724337a315e..5117a7ac1cb 100644 --- a/usr.bin/systat/keyboard.c +++ b/usr.bin/systat/keyboard.c @@ -1,4 +1,4 @@ -/* $OpenBSD: keyboard.c,v 1.13 2003/06/03 02:56:17 millert Exp $ */ +/* $OpenBSD: keyboard.c,v 1.14 2003/07/10 00:06:51 david Exp $ */ /* $NetBSD: keyboard.c,v 1.2 1995/01/20 08:51:59 jtc Exp $ */ /*- @@ -34,11 +34,12 @@ #if 0 static char sccsid[] = "@(#)keyboard.c 8.1 (Berkeley) 6/6/93"; #endif -static char rcsid[] = "$OpenBSD: keyboard.c,v 1.13 2003/06/03 02:56:17 millert Exp $"; +static char rcsid[] = "$OpenBSD: keyboard.c,v 1.14 2003/07/10 00:06:51 david Exp $"; #endif /* not lint */ #include <ctype.h> #include <signal.h> +#include <stdlib.h> #include <termios.h> #include <errno.h> |