summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libc/newlibc.c
diff options
context:
space:
mode:
Diffstat (limited to 'c/src/lib/libc/newlibc.c')
-rw-r--r--c/src/lib/libc/newlibc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/c/src/lib/libc/newlibc.c b/c/src/lib/libc/newlibc.c
index 570c905f30..4926467837 100644
--- a/c/src/lib/libc/newlibc.c
+++ b/c/src/lib/libc/newlibc.c
@@ -60,7 +60,7 @@ rtems_unsigned32 MY_task_get_note(
int libc_reentrant; /* do we think we are reentrant? */
-struct _reent libc_global_reent = _REENT_INIT(libc_global_reent);
+struct _reent libc_global_reent;
/*
* CYGNUS newlib routine that does atexit() processing and flushes
@@ -294,6 +294,7 @@ libc_init(int reentrant)
rtems_id extension_id;
rtems_status_code rc;
+ libc_global_reent = (struct _reent) _REENT_INIT((libc_global_reent));
_REENT = &libc_global_reent;
if (reentrant)