diff options
author | Christophe Grenier <grenier@cgsecurity.org> | 2009-06-12 08:42:45 +0200 |
---|---|---|
committer | Christophe Grenier <grenier@cgsecurity.org> | 2009-06-12 08:42:45 +0200 |
commit | 4452138345a859118938f230cc5311864ed55a66 (patch) | |
tree | 01c36bf1ed557360673323520bcbf4c80197b4da /src/phmain.c | |
parent | 09ed66000a9979bc9e51071151e2ab81f3f17792 (diff) |
Always include stdio.h before ncurses header and types.h
Diffstat (limited to 'src/phmain.c')
-rw-r--r-- | src/phmain.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/phmain.c b/src/phmain.c index 8c9544c..ce1c277 100644 --- a/src/phmain.c +++ b/src/phmain.c @@ -23,6 +23,8 @@ #ifdef HAVE_CONFIG_H #include <config.h> #endif + +#include <stdio.h> #ifdef HAVE_STDLIB_H #include <stdlib.h> #endif @@ -59,8 +61,6 @@ #include "fnctdsk.h" #ifdef HAVE_NCURSES #include "intrfn.h" -#else -#include <stdio.h> #endif #ifdef HAVE_JPEGLIB_H #include <jpeglib.h> |