mirror of
https://github.com/edeproject/ede.git
synced 2023-08-10 21:13:03 +03:00
Removed 'wait' parameter from spawn_program
This commit is contained in:
@@ -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);
|
||||
}
|
||||
|
Reference in New Issue
Block a user