consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
[musl] / src / thread / pthread_kill.c
index 17aa5c4..36e9b6d 100644 (file)
@@ -2,5 +2,5 @@
 
 int pthread_kill(pthread_t t, int sig)
 {
-       return -__syscall(__NR_tgkill, t->pid, t->tid, sig);
+       return -__syscall(SYS_tgkill, t->pid, t->tid, sig);
 }