consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix

This commit is contained in:
Rich Felker
2011-04-06 20:32:53 -04:00
parent b2486a8922
commit c2cd25bff8
38 changed files with 40 additions and 40 deletions
+2 -2
View File
@@ -3,6 +3,6 @@
void _Exit(int ec)
{
__syscall(__NR_exit_group, ec);
__syscall(__NR_exit, ec);
__syscall(SYS_exit_group, ec);
__syscall(SYS_exit, ec);
}