(_exit): Don't use ABORT_INSTRUCTION if it is not defined.
authorUlrich Drepper <drepper@redhat.com>
Fri, 20 Sep 2002 04:14:30 +0000 (04:14 +0000)
committerUlrich Drepper <drepper@redhat.com>
Fri, 20 Sep 2002 04:14:30 +0000 (04:14 +0000)
sysdeps/unix/sysv/linux/_exit.c

index e07eb31..25c3871 100644 (file)
@@ -33,7 +33,9 @@ _exit (status)
 #endif
       INLINE_SYSCALL (exit, 1, status);
 
+#ifdef ABORT_INSTRUCTION
       ABORT_INSTRUCTION;
+#endif
     }
 }
 libc_hidden_def (_exit)