Removed 'wait' parameter from spawn_program

This commit is contained in:
Sanel Zukan
2007-07-30 13:30:41 +00:00
parent df1dfbfc41
commit d48f8e4c24
4 changed files with 7 additions and 12 deletions

View File

@@ -21,7 +21,7 @@
extern char** environ;
int run_fork(const char* cmd, bool wait) {
int spawn_program(const char* cmd) {
if(!cmd)
return SPAWN_EMPTY;
@@ -62,8 +62,3 @@ int run_fork(const char* cmd, bool wait) {
return status_ret;
}
int spawn_program(const char* cmd, bool wait) {
return run_fork(cmd, wait);
}