about summary refs log tree commit diff
path: root/src/exit/_Exit.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/exit/_Exit.c')
-rw-r--r--src/exit/_Exit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/exit/_Exit.c b/src/exit/_Exit.c
index d18b6183..6ceb1437 100644
--- a/src/exit/_Exit.c
+++ b/src/exit/_Exit.c
@@ -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);
 }