From: Ulrich Drepper Date: Fri, 20 Sep 2002 04:14:30 +0000 (+0000) Subject: (_exit): Don't use ABORT_INSTRUCTION if it is not defined. X-Git-Tag: upstream/2.30~21099 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=f993c505f63289fc4539df1355441a41623a410b;p=external%2Fglibc.git (_exit): Don't use ABORT_INSTRUCTION if it is not defined. --- 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)