consistency: change all remaining syscalls to use SYS_ rather than __NR_ prefix
This commit is contained in:
+2
-2
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user