summaryrefslogtreecommitdiffstats
path: root/Tests/COnly/conly.c
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/COnly/conly.c')
-rw-r--r--Tests/COnly/conly.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/Tests/COnly/conly.c b/Tests/COnly/conly.c
index 7214fe1..7bd8e8e 100644
--- a/Tests/COnly/conly.c
+++ b/Tests/COnly/conly.c
@@ -5,19 +5,17 @@
#include <stdio.h>
-int main ()
+int main()
{
int class = 0;
- if ( LibC1Func() != 2.0 )
- {
+ if (LibC1Func() != 2.0) {
printf("Problem with libc1\n");
return 1;
- }
- if ( LibC2Func() != 1.0 )
- {
+ }
+ if (LibC2Func() != 1.0) {
printf("Problem with libc2\n");
return 1;
- }
+ }
printf("Foo: %s %d\n", foo, class);
return 0;
}