diff options
Diffstat (limited to 'Tests/ForceInclude')
-rw-r--r-- | Tests/ForceInclude/foo.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/Tests/ForceInclude/foo.c b/Tests/ForceInclude/foo.c index af898f4aa6..7f550d0f9f 100644 --- a/Tests/ForceInclude/foo.c +++ b/Tests/ForceInclude/foo.c @@ -1,7 +1,10 @@ #ifndef FOO_1 -# error "foo1.h not included by /FI" +#error "foo1.h not included by /FI" #endif #ifndef FOO_2 -# error "foo2.h not included by /FI" +#error "foo2.h not included by /FI" #endif -int main(void) { return 0; } +int main(void) +{ + return 0; +} |