555347744d
builder. Note that this unfortunately causes all Fix-computed hashes to change.
21 lines
357 B
C++
21 lines
357 B
C++
#ifndef __EXEC_H
|
|
#define __EXEC_H
|
|
|
|
#include <string>
|
|
#include <map>
|
|
|
|
#include "util.hh"
|
|
|
|
using namespace std;
|
|
|
|
|
|
/* A Unix environment is a mapping from strings to strings. */
|
|
typedef map<string, string> Environment;
|
|
|
|
|
|
/* Run a program. */
|
|
void runProgram(const string & program,
|
|
const Strings & args, const Environment & env);
|
|
|
|
|
|
#endif /* !__EXEC_H */
|