diff options
Diffstat (limited to 'test cases')
-rw-r--r-- | test cases/common/13 pch/prog.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/test cases/common/13 pch/prog.c b/test cases/common/13 pch/prog.c index 23125f5..0ce3d0a 100644 --- a/test cases/common/13 pch/prog.c +++ b/test cases/common/13 pch/prog.c @@ -1,6 +1,4 @@ -#if defined(_MSC_VER) -#include"prog.pch" -#endif +// No includes here, they need to come from the PCH void func() { fprintf(stdout, "This is a function that fails if stdio is not #included.\n"); @@ -9,3 +7,4 @@ void func() { int main(int argc, char **argv) { return 0; } + |