Bill Hoffman il y a 22 ans
Parent
commit
003a6a7260
2 fichiers modifiés avec 2 ajouts et 0 suppressions
  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;
 }