mirror of
https://github.com/fluencelabs/musl
synced 2025-06-30 07:02:41 +00:00
global cleanup to use the new syscall interface
This commit is contained in:
@ -3,5 +3,5 @@
|
||||
|
||||
pid_t waitpid(pid_t pid, int *status, int options)
|
||||
{
|
||||
return syscall4(__NR_wait4, pid, (long)status, options, 0);
|
||||
return syscall(SYS_wait4, pid, status, options, 0);
|
||||
}
|
||||
|
Reference in New Issue
Block a user