There is no need to pass -o - to the preprocessor.
authorChristoph Mallon <christoph.mallon@gmx.de>
Mon, 19 Nov 2007 19:57:10 +0000 (19:57 +0000)
committerChristoph Mallon <christoph.mallon@gmx.de>
Mon, 19 Nov 2007 19:57:10 +0000 (19:57 +0000)
[r18489]

main.c

diff --git a/main.c b/main.c
index ad0737e..79807dd 100644 (file)
--- a/main.c
+++ b/main.c
@@ -167,11 +167,7 @@ static FILE* preprocess(const char *in)
 {
        char buf[4096];
 
-#ifdef _WIN32
-       snprintf(buf, sizeof(buf), PREPROCESSOR " %s",in);
-#else
-       snprintf(buf, sizeof(buf), PREPROCESSOR " %s -o -",in);
-#endif
+       snprintf(buf, sizeof(buf), PREPROCESSOR " %s", in);
 
        if(verbose) {
                puts(buf);