diff options
Diffstat (limited to 'newlib/libc/stdlib/atexit.c')
-rw-r--r-- | newlib/libc/stdlib/atexit.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/newlib/libc/stdlib/atexit.c b/newlib/libc/stdlib/atexit.c index e0e42988a..97424da81 100644 --- a/newlib/libc/stdlib/atexit.c +++ b/newlib/libc/stdlib/atexit.c @@ -67,19 +67,19 @@ _DEFUN (atexit, /* _REENT_SMALL atexit() doesn't allow more than the required 32 entries. */ #ifndef _REENT_SMALL - if ((p = _REENT->_atexit) == NULL) - _REENT->_atexit = p = &_REENT->_atexit0; + if ((p = _GLOBAL_REENT->_atexit) == NULL) + _GLOBAL_REENT->_atexit = p = &_GLOBAL_REENT->_atexit0; if (p->_ind >= _ATEXIT_SIZE) { if ((p = (struct _atexit *) malloc (sizeof *p)) == NULL) return -1; p->_ind = 0; p->_on_exit_args._fntypes = 0; - p->_next = _REENT->_atexit; - _REENT->_atexit = p; + p->_next = _GLOBAL_REENT->_atexit; + _GLOBAL_REENT->_atexit = p; } #else - p = &_REENT->_atexit; + p = &_GLOBAL_REENT->_atexit; if (p->_ind >= _ATEXIT_SIZE) return -1; #endif |