about summary refs log tree commit diff
path: root/src/exec.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/exec.hh')
-rw-r--r--src/exec.hh5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/exec.hh b/src/exec.hh
index 9dc8e0cd029c..8d410e404383 100644
--- a/src/exec.hh
+++ b/src/exec.hh
@@ -4,6 +4,8 @@
 #include <string>
 #include <map>
 
+#include "util.hh"
+
 using namespace std;
 
 
@@ -12,7 +14,8 @@ typedef map<string, string> Environment;
 
 
 /* Run a program. */
-void runProgram(const string & program, Environment env);
+void runProgram(const string & program, 
+    const Strings & args, const Environment & env);
 
 
 #endif /* !__EXEC_H */