commit 982d310e61b0677f980b01ef4614c43ab461ec81
parent 364b30425621daa66c1c5f29ced30ff973e9ea34
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date: Wed, 8 Mar 2017 10:31:52 +0100
[libc-amd64-linux] Map _Exit() to SYS_EXIT
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/libc/src/sys/amd64-linux/Makefile b/libc/src/sys/amd64-linux/Makefile
@@ -4,7 +4,7 @@
include ../../../../config.mk
OBJ_GEN = _read.o _write.o _open.o _close.o _lseek.o _brk.o\
- _rt_sigaction.o _getpid.o _exit.o _kill.o
+ _rt_sigaction.o _getpid.o _Exit.o _kill.o
ASM_GEN = $(OBJ_GEN:.o=.s)
OBJ = $(OBJ_GEN)
diff --git a/libc/src/sys/amd64-linux/syscall.lst b/libc/src/sys/amd64-linux/syscall.lst
@@ -7,5 +7,5 @@
12 _brk
13 _rt_sigaction
38 _getpid
-60 _exit
+60 _Exit
32 _kill