diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-09-05 18:22:00 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-09-05 18:22:00 +0000 |
commit | f1b1505827a0cb3ec1512e309d43bffc85680418 (patch) | |
tree | a6c3993b26d7df4653ee522f828375cfab00dcac /newlib/libc/stdlib/exit.c | |
parent | b73263e40127b8ad0e416a239517918cbcf39d90 (diff) | |
download | cygnal-f1b1505827a0cb3ec1512e309d43bffc85680418.tar.gz cygnal-f1b1505827a0cb3ec1512e309d43bffc85680418.tar.bz2 cygnal-f1b1505827a0cb3ec1512e309d43bffc85680418.zip |
2003-09-05 Jeff Johnston <jjohnstn@redhat.com>
* libc/stdlib/exit.c (exit): Setting of struct _atexit ptr p
is different for _REENT_SMALL than when using regular reent
struct.
Diffstat (limited to 'newlib/libc/stdlib/exit.c')
-rw-r--r-- | newlib/libc/stdlib/exit.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/exit.c b/newlib/libc/stdlib/exit.c index 286c20db9..dad2861d2 100644 --- a/newlib/libc/stdlib/exit.c +++ b/newlib/libc/stdlib/exit.c @@ -64,9 +64,8 @@ _DEFUN (exit, (code), register int n; int i; - p = &_GLOBAL_REENT->_atexit; - #ifdef _REENT_SMALL + p = &_GLOBAL_REENT->_atexit; args = p->_on_exit_args_ptr; if (args == NULL) @@ -83,6 +82,7 @@ _DEFUN (exit, (code), p->_fns[n] (); } #else + p = _GLOBAL_REENT->_atexit; do { args = & p->_on_exit_args; |