diff options
Diffstat (limited to 'Tests/SameName/Exe1/conly.c')
-rw-r--r-- | Tests/SameName/Exe1/conly.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Tests/SameName/Exe1/conly.c b/Tests/SameName/Exe1/conly.c index eb62c30..8f2ce05 100644 --- a/Tests/SameName/Exe1/conly.c +++ b/Tests/SameName/Exe1/conly.c @@ -1,12 +1,11 @@ #include "libc1.h" #include <stdio.h> -int main () +int main() { - if ( LibC1Func() != 2.0 ) - { + if (LibC1Func() != 2.0) { printf("Problem with libc1\n"); return 1; - } + } return 0; } |