diff options
Diffstat (limited to 'lib/libc/stdlib/system.c')
| -rw-r--r-- | lib/libc/stdlib/system.c | 5 | 
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c index 0039c078216c..236a8b0cc2ee 100644 --- a/lib/libc/stdlib/system.c +++ b/lib/libc/stdlib/system.c @@ -84,7 +84,7 @@ __system(command)  		_exit(127);  	default:			/* parent */  		do { -			pid = _libc_waitpid(pid, &pstat, 0); +			pid = _wait4(pid, &pstat, 0, (struct rusage *)0);  		} while (pid == -1 && errno == EINTR);  		break;  	} @@ -94,5 +94,4 @@ __system(command)  	return(pid == -1 ? -1 : pstat);  } -__weak_reference(__system, _libc_system); -__weak_reference(_libc_system, system); +__weak_reference(__system, system);  | 
