summaryrefslogtreecommitdiffstats
path: root/Tests/COnly
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2006-05-07 14:55:43 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2006-05-07 14:55:43 (GMT)
commit0c14932ae6c678feb66f16fddf82e48ac1e6769d (patch)
tree5a11eb9bf4ace5cb721bd520bb01ae6f6ad9eb06 /Tests/COnly
parentc67d55b2e7e122bb869fe34f5da03785a4f45121 (diff)
downloadCMake-0c14932ae6c678feb66f16fddf82e48ac1e6769d.zip
CMake-0c14932ae6c678feb66f16fddf82e48ac1e6769d.tar.gz
CMake-0c14932ae6c678feb66f16fddf82e48ac1e6769d.tar.bz2
ENH: move changes from main tree and change version to 2.4.2
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;
}