diff options
Diffstat (limited to 'newlib/libc/stdlib/exit.c')
-rw-r--r-- | newlib/libc/stdlib/exit.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/libc/stdlib/exit.c b/newlib/libc/stdlib/exit.c index b5ef05f..195b724 100644 --- a/newlib/libc/stdlib/exit.c +++ b/newlib/libc/stdlib/exit.c @@ -50,8 +50,6 @@ Supporting OS subroutines required: <<_exit>>. #include <reent.h> #include "atexit.h" -#ifndef _REENT_ONLY - /* * Exit, flushing stdio buffers if necessary. */ @@ -66,5 +64,3 @@ _DEFUN (exit, (code), (*_GLOBAL_REENT->__cleanup) (_GLOBAL_REENT); _exit (code); } - -#endif |