summaryrefslogtreecommitdiffstats
path: root/Tests/COnly
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/COnly')
-rw-r--r--Tests/COnly/conly.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/Tests/COnly/conly.c b/Tests/COnly/conly.c
index e8280ec..7214fe1 100644
--- a/Tests/COnly/conly.c
+++ b/Tests/COnly/conly.c
@@ -7,6 +7,7 @@
int main ()
{
+ int class = 0;
if ( LibC1Func() != 2.0 )
{
printf("Problem with libc1\n");
@@ -17,6 +18,6 @@ int main ()
printf("Problem with libc2\n");
return 1;
}
- printf("Foo: %s\n", foo);
+ printf("Foo: %s %d\n", foo, class);
return 0;
}