From 04a97743cadccdd7651016fda60efe2c7b8e3101 Mon Sep 17 00:00:00 2001 From: Misha Brukman Date: Mon, 29 Sep 2003 22:37:57 +0000 Subject: [PATCH] Tersified and fixed whitespace (tabs -> spaces). llvm-svn: 8752 --- include/Support/SystemUtils.h | 16 ++++++---------- 1 file changed, 6 insertions(+), 10 deletions(-) diff --git a/include/Support/SystemUtils.h b/include/Support/SystemUtils.h index b4d2c697f6e..26371c93dcc 100644 --- a/include/Support/SystemUtils.h +++ b/include/Support/SystemUtils.h @@ -21,7 +21,7 @@ bool isExecutableFile(const std::string &ExeFileName); /// in the PATH. If the executable cannot be found, return an empty string. /// std::string FindExecutable(const std::string &ExeName, - const std::string &ProgramPath); + const std::string &ProgramPath); /// RunProgramWithTimeout - This function executes the specified program, with /// the specified null-terminated argument array, with the stdin/out/err fd's @@ -30,16 +30,12 @@ std::string FindExecutable(const std::string &ExeName, /// It returns the return value of the program, or -1 if a timeout is detected. /// int RunProgramWithTimeout(const std::string &ProgramPath, const char **Args, - const std::string &StdInFile = "", - const std::string &StdOutFile = "", - const std::string &StdErrFile = ""); + const std::string &StdInFile = "", + const std::string &StdOutFile = "", + const std::string &StdErrFile = ""); -/// -/// Function: ExecWait() -/// -/// Description: -/// Execute a program with the given arguments and environment and -/// wait for it to terminate. +/// ExecWait - Execute a program with the given arguments and environment and +/// wait for it to terminate. /// int ExecWait (const char * const argv[], const char * const envp[]); #endif