diff options
Diffstat (limited to 'support/cpp/gcc/gcc.cc')
-rw-r--r-- | support/cpp/gcc/gcc.cc | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/support/cpp/gcc/gcc.cc b/support/cpp/gcc/gcc.cc index 3b27f49cc..4737a7935 100644 --- a/support/cpp/gcc/gcc.cc +++ b/support/cpp/gcc/gcc.cc @@ -27,9 +27,6 @@ CC recognizes how to compile each input file by suffixes in the file names. Once it knows which kind of compilation to perform, the procedure for compilation is specified by a string called a "spec". */ -#include <iostream> -#define untested() ( std::cerr << "@@#\n@@@:"<< __FILE__ << ":"<< __LINE__ \ - <<":" << __func__ << "\n" ) #include "config.h" #include "system.h" @@ -49,6 +46,9 @@ compilation is specified by a string called a "spec". */ #include "spellcheck.h" #include <cassert> +#include <iostream> +#define untested() ( std::cerr << "@@#\n@@@:"<< __FILE__ << ":"<< __LINE__ \ + <<":" << __func__ << "\n" ) // sdcpp extern bool flag_wpa; |