diff options
author | Jeff Johnston <jjohnstn@redhat.com> | 2003-09-02 22:42:05 +0000 |
---|---|---|
committer | Jeff Johnston <jjohnstn@redhat.com> | 2003-09-02 22:42:05 +0000 |
commit | ed027a53553d4935d9a65c434de7cb6bd963419c (patch) | |
tree | ab40776fc21c9745e274dc329f77d613f00e5b31 /newlib/libc/stdlib/exit.c | |
parent | b960d7bf2d82595c68c8de5963487d35dc58d10c (diff) | |
download | newlib-ed027a53553d4935d9a65c434de7cb6bd963419c.zip newlib-ed027a53553d4935d9a65c434de7cb6bd963419c.tar.gz newlib-ed027a53553d4935d9a65c434de7cb6bd963419c.tar.bz2 |
2003-09-02 Thomas Pfaff <tpfaff@gmx.net>
* libc/stdlib/atexit.c: Rename _REENT to _GLOBAL_REENT throughout.
* libc/stdlib/exit.c : Ditto.
* libc/stdlib/on_exit.c: Ditto.
Diffstat (limited to 'newlib/libc/stdlib/exit.c')
-rw-r--r-- | newlib/libc/stdlib/exit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/newlib/libc/stdlib/exit.c b/newlib/libc/stdlib/exit.c index a659361..286c20d 100644 --- a/newlib/libc/stdlib/exit.c +++ b/newlib/libc/stdlib/exit.c @@ -64,7 +64,7 @@ _DEFUN (exit, (code), register int n; int i; - p = &_REENT->_atexit; + p = &_GLOBAL_REENT->_atexit; #ifdef _REENT_SMALL args = p->_on_exit_args_ptr; @@ -98,8 +98,8 @@ _DEFUN (exit, (code), while (p); #endif - if (_REENT->__cleanup) - (*_REENT->__cleanup) (_REENT); + if (_GLOBAL_REENT->__cleanup) + (*_GLOBAL_REENT->__cleanup) (_GLOBAL_REENT); _exit (code); } |