diff options
Diffstat (limited to 'Tests/SimpleExclude/dirC/dirA/t4.c')
-rw-r--r-- | Tests/SimpleExclude/dirC/dirA/t4.c | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Tests/SimpleExclude/dirC/dirA/t4.c b/Tests/SimpleExclude/dirC/dirA/t4.c index 7c36ca9..b0e4000 100644 --- a/Tests/SimpleExclude/dirC/dirA/t4.c +++ b/Tests/SimpleExclude/dirC/dirA/t4.c @@ -4,14 +4,14 @@ 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 T4. This one should work.\n"); - return 0; - } - - + if (ac > 1000) { + return *av[0]; + } + printf("This is T4. This one should work.\n"); + return 0; +} |