summaryrefslogtreecommitdiffstats
path: root/Tests/CustomCommand
diff options
context:
space:
mode:
authorBill Hoffman <bill.hoffman@kitware.com>2003-06-04 18:25:53 (GMT)
committerBill Hoffman <bill.hoffman@kitware.com>2003-06-04 18:25:53 (GMT)
commit003a6a7260716ffc6731bac106dc8980f985acc8 (patch)
treec0f97eb0bf0172de167e99953a8900acc3c8191d /Tests/CustomCommand
parent11a698558e1445c7f57d5b600c584fe7acc4b2e5 (diff)
downloadCMake-003a6a7260716ffc6731bac106dc8980f985acc8.zip
CMake-003a6a7260716ffc6731bac106dc8980f985acc8.tar.gz
CMake-003a6a7260716ffc6731bac106dc8980f985acc8.tar.bz2
minor fixes
Diffstat (limited to 'Tests/CustomCommand')
-rw-r--r--Tests/CustomCommand/generator.cxx1
-rw-r--r--Tests/CustomCommand/wrapper.cxx1
2 files changed, 2 insertions, 0 deletions
diff --git a/Tests/CustomCommand/generator.cxx b/Tests/CustomCommand/generator.cxx
index 0cb70db..52ffdc3 100644
--- a/Tests/CustomCommand/generator.cxx
+++ b/Tests/CustomCommand/generator.cxx
@@ -6,4 +6,5 @@ int main(int argc, char *argv[])
fprintf(fp,"int generated() { return 3; }\n");
fclose(fp);
+ return 0;
}
diff --git a/Tests/CustomCommand/wrapper.cxx b/Tests/CustomCommand/wrapper.cxx
index b15f903..b472f7f 100644
--- a/Tests/CustomCommand/wrapper.cxx
+++ b/Tests/CustomCommand/wrapper.cxx
@@ -6,4 +6,5 @@ int main(int argc, char *argv[])
fprintf(fp,"int wrapped() { return 5; }\n");
fclose(fp);
+ return 0;
}