Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2004-09-17 01:26:51 +0400
committerJeff Johnston <jjohnstn@redhat.com>2004-09-17 01:26:51 +0400
commit7a0f696676736d2d8b1d214f9f0cfa5ce8ce76c1 (patch)
treead51763ff7cdbd9ef9f237c3b55e24d8e82603eb /newlib/libc/stdlib
parentc77672c0fd86170f7128b19bb4030710c41ab794 (diff)
2004-09-16 Antony King <antony.king@st.com>
* libc/stdio/fwalk.c (_fwalk): Remove check for _GLOBAL_REENT and only walk the reentrancy parameter. (_fwalk_reent): Ditto. * libc/stdlib/exit.c: Remove out of date _REENT_ONLY check.
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r--newlib/libc/stdlib/exit.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/newlib/libc/stdlib/exit.c b/newlib/libc/stdlib/exit.c
index b5ef05f5b..195b72454 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