diff options
Diffstat (limited to 'newlib/libc/stdlib')
-rw-r--r-- | newlib/libc/stdlib/mallocr.c | 2 | ||||
-rw-r--r-- | newlib/libc/stdlib/mstats.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/newlib/libc/stdlib/mallocr.c b/newlib/libc/stdlib/mallocr.c index 08a3b00..71886c1 100644 --- a/newlib/libc/stdlib/mallocr.c +++ b/newlib/libc/stdlib/mallocr.c @@ -3484,7 +3484,7 @@ void malloc_stats(RONEARG) RDECL MALLOC_UNLOCK; #ifdef INTERNAL_NEWLIB - _REENT_SMALL_CHECK_INIT(_stderr_r (reent_ptr)); + _REENT_SMALL_CHECK_INIT(reent_ptr); fp = _stderr_r(reent_ptr); #define fprintf fiprintf #else diff --git a/newlib/libc/stdlib/mstats.c b/newlib/libc/stdlib/mstats.c index 2b6c6bc..42b5db2 100644 --- a/newlib/libc/stdlib/mstats.c +++ b/newlib/libc/stdlib/mstats.c @@ -140,7 +140,7 @@ _DEFUN (_mstats_r, (ptr, s), struct _reent *ptr _AND char *s) { - _REENT_SMALL_CHECK_INIT(_stderr_r (ptr)); + _REENT_SMALL_CHECK_INIT(ptr); fiprintf (_stderr_r (ptr), "Memory allocation statistics %s\n", s); _malloc_stats_r (ptr); } |