diff options
Diffstat (limited to 'Tests/SimpleExclude/dirD')
-rw-r--r-- | Tests/SimpleExclude/dirD/t9.c | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/Tests/SimpleExclude/dirD/t9.c b/Tests/SimpleExclude/dirD/t9.c index 321014b..9954ea5 100644 --- a/Tests/SimpleExclude/dirD/t9.c +++ b/Tests/SimpleExclude/dirD/t9.c @@ -6,19 +6,19 @@ extern int tlib7func(); int main() { int ac; - char*av[]; + char* av[]; #else - int main(int ac, char*av[]) - { +int main(int ac, char* av[]) +{ #endif - if(ac > 1000){return *av[0];} - printf("This is T9. This one should work.\n"); - - if ( tlib7func() != 7 ) - { - fprintf(stderr, "Something wrong with T7\n"); - return 1; - } - return 0; - } + if (ac > 1000) { + return *av[0]; + } + printf("This is T9. This one should work.\n"); + if (tlib7func() != 7) { + fprintf(stderr, "Something wrong with T7\n"); + return 1; + } + return 0; +} |