summaryrefslogtreecommitdiffstats
path: root/Tests
diff options
context:
space:
mode:
Diffstat (limited to 'Tests')
-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;
}