From: Christoph Mallon Date: Mon, 19 Nov 2007 19:57:10 +0000 (+0000) Subject: There is no need to pass -o - to the preprocessor. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=e336a5f8c1ff8342bc2198ddbe8dc1656343dd78;p=cparser There is no need to pass -o - to the preprocessor. [r18489] --- diff --git a/main.c b/main.c index ad0737e..79807dd 100644 --- 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);