Browse Source

minor fixes

Bill Hoffman 22 years ago
parent
commit
003a6a7260
2 changed files with 2 additions and 0 deletions
  1. 1 0
      Tests/CustomCommand/generator.cxx
  2. 1 0
      Tests/CustomCommand/wrapper.cxx

+ 1 - 0
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;
 }

+ 1 - 0
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;
 }