diff options
author | Christophe Grenier <[email protected]> | 2009-06-12 08:42:45 +0200 |
---|---|---|
committer | Christophe Grenier <[email protected]> | 2009-06-12 08:42:45 +0200 |
commit | 4452138345a859118938f230cc5311864ed55a66 (patch) | |
tree | 01c36bf1ed557360673323520bcbf4c80197b4da /src/intrface.c | |
parent | 09ed66000a9979bc9e51071151e2ab81f3f17792 (diff) |
Always include stdio.h before ncurses header and types.h
Diffstat (limited to 'src/intrface.c')
-rw-r--r-- | src/intrface.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/intrface.c b/src/intrface.c index 5fe85b5c..964f30d3 100644 --- a/src/intrface.c +++ b/src/intrface.c @@ -23,6 +23,7 @@ #include <config.h> #endif +#include <stdio.h> #ifdef HAVE_STRING_H #include <string.h> #endif @@ -32,8 +33,6 @@ #include "intrf.h" #ifdef HAVE_NCURSES #include "intrfn.h" -#else -#include <stdio.h> #endif #include "godmode.h" #include "fnctdsk.h" |