aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-09-20 04:14:30 +0000
committerUlrich Drepper <drepper@redhat.com>2002-09-20 04:14:30 +0000
commitf993c505f63289fc4539df1355441a41623a410b (patch)
treea50b3038660daa003e538881e0cb21c5e670ee11
parent4ac9bb2e4a9c8be4c0f27ef7ede2bc7a9e219083 (diff)
downloadglibc-f993c505f63289fc4539df1355441a41623a410b.tar
glibc-f993c505f63289fc4539df1355441a41623a410b.tar.gz
glibc-f993c505f63289fc4539df1355441a41623a410b.tar.bz2
glibc-f993c505f63289fc4539df1355441a41623a410b.zip
(_exit): Don't use ABORT_INSTRUCTION if it is not defined.
-rw-r--r--sysdeps/unix/sysv/linux/_exit.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/_exit.c b/sysdeps/unix/sysv/linux/_exit.c
index e07eb312d2..25c38712d0 100644
--- a/sysdeps/unix/sysv/linux/_exit.c
+++ b/sysdeps/unix/sysv/linux/_exit.c
@@ -33,7 +33,9 @@ _exit (status)
#endif
INLINE_SYSCALL (exit, 1, status);
+#ifdef ABORT_INSTRUCTION
ABORT_INSTRUCTION;
+#endif
}
}
libc_hidden_def (_exit)