From aa398f56fa398f2202b04e82c67f822f3233786f Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sun, 20 Mar 2011 00:16:43 -0400 Subject: global cleanup to use the new syscall interface --- src/process/waitid.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/process/waitid.c') diff --git a/src/process/waitid.c b/src/process/waitid.c index 0ec0d55c..b1e5e9b1 100644 --- a/src/process/waitid.c +++ b/src/process/waitid.c @@ -3,5 +3,5 @@ int waitid(idtype_t type, id_t id, siginfo_t *info, int options) { - return syscall5(__NR_waitid, type, id, (long)info, options, 0); + return syscall(SYS_waitid, type, id, info, options, 0); } -- cgit v1.2.1