From f993c505f63289fc4539df1355441a41623a410b Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Fri, 20 Sep 2002 04:14:30 +0000 Subject: [PATCH] (_exit): Don't use ABORT_INSTRUCTION if it is not defined. --- sysdeps/unix/sysv/linux/_exit.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sysdeps/unix/sysv/linux/_exit.c b/sysdeps/unix/sysv/linux/_exit.c index e07eb31..25c3871 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) -- 2.7.4