diff options
author | mestre <mestre@cvs.openbsd.org> | 2015-12-31 16:50:30 +0000 |
---|---|---|
committer | mestre <mestre@cvs.openbsd.org> | 2015-12-31 16:50:30 +0000 |
commit | f0bd13e489870d3f1368119a5827574fbc73852e (patch) | |
tree | b5e680627bed27d7ea7cf61eae50a874a336d336 /games/atc/input.c | |
parent | de98887a74032de8157f9b7657eead6ec6abc119 (diff) |
Include only needed header files per each source file
OK tb@
Diffstat (limited to 'games/atc/input.c')
-rw-r--r-- | games/atc/input.c | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/games/atc/input.c b/games/atc/input.c index 6528902b117..0d2439d6048 100644 --- a/games/atc/input.c +++ b/games/atc/input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: input.c,v 1.12 2009/10/27 23:59:23 deraadt Exp $ */ +/* $OpenBSD: input.c,v 1.13 2015/12/31 16:50:29 mestre Exp $ */ /* $NetBSD: input.c,v 1.4 1995/04/27 21:22:24 mycroft Exp $ */ /*- @@ -42,8 +42,14 @@ * For more info on this and all of my stuff, mail edjames@berkeley.edu. */ -#include "include.h" -#include "pathnames.h" +#include <ctype.h> +#include <math.h> +#include <stdlib.h> +#include <string.h> +#include <termios.h> + +#include "def.h" +#include "extern.h" #define MAXRULES 6 #define MAXDEPTH 15 |