diff options
author | Ulrich Drepper <drepper@redhat.com> | 2002-09-20 04:14:30 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2002-09-20 04:14:30 +0000 |
commit | f993c505f63289fc4539df1355441a41623a410b (patch) | |
tree | a50b3038660daa003e538881e0cb21c5e670ee11 /sysdeps/unix | |
parent | 4ac9bb2e4a9c8be4c0f27ef7ede2bc7a9e219083 (diff) | |
download | glibc-f993c505f63289fc4539df1355441a41623a410b.tar glibc-f993c505f63289fc4539df1355441a41623a410b.tar.gz glibc-f993c505f63289fc4539df1355441a41623a410b.tar.bz2 glibc-f993c505f63289fc4539df1355441a41623a410b.zip |
(_exit): Don't use ABORT_INSTRUCTION if it is not defined.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/_exit.c | 2 |
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) |