summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib/system.c
diff options
context:
space:
mode:
authorJason Evans <jasone@FreeBSD.org>2000-01-27 23:07:25 +0000
committerJason Evans <jasone@FreeBSD.org>2000-01-27 23:07:25 +0000
commit9233c4d9426e03b28e043baeefb6d5a37dc4086e (patch)
tree8606358bf2ae9c436cce380d290e7a73f9cddfc6 /lib/libc/stdlib/system.c
parent072229cdbb757229b7e11f102da326679db27d0e (diff)
Notes
Diffstat (limited to 'lib/libc/stdlib/system.c')
-rw-r--r--lib/libc/stdlib/system.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/lib/libc/stdlib/system.c b/lib/libc/stdlib/system.c
index 0039c078216cf..236a8b0cc2ee3 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);