[libFuzzer] experimental flag -drill (another search heuristic; Mike Aizatsky's idea)
[oota-llvm.git] / lib / Fuzzer / FuzzerUtil.cpp
index 8d3480cf48074a7755d287e7713008672f40f39e..20a41e0d4fbb923bf21bad26fc8fb203a4ee7444 100644 (file)
@@ -69,8 +69,8 @@ int NumberOfCpuCores() {
   return N;
 }
 
-void ExecuteCommand(const std::string &Command) {
-  system(Command.c_str());
+int ExecuteCommand(const std::string &Command) {
+  return system(Command.c_str());
 }
 
 bool ToASCII(Unit &U) {