(_exit): Don't use ABORT_INSTRUCTION if it is not defined.

This commit is contained in:
Ulrich Drepper 2002-09-20 04:14:30 +00:00
parent 4ac9bb2e4a
commit f993c505f6
1 changed files with 2 additions and 0 deletions

View File

@ -33,7 +33,9 @@ _exit (status)
#endif
INLINE_SYSCALL (exit, 1, status);
#ifdef ABORT_INSTRUCTION
ABORT_INSTRUCTION;
#endif
}
}
libc_hidden_def (_exit)