Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'newlib/libc/stdlib/mstats.c')
-rw-r--r--newlib/libc/stdlib/mstats.c11
1 files changed, 1 insertions, 10 deletions
diff --git a/newlib/libc/stdlib/mstats.c b/newlib/libc/stdlib/mstats.c
index ba89f494d..c1628957a 100644
--- a/newlib/libc/stdlib/mstats.c
+++ b/newlib/libc/stdlib/mstats.c
@@ -10,7 +10,7 @@ int _dummy_mstats = 1;
/*
FUNCTION
-<<mallinfo>>, <<malloc_stats>>, <<mallopt>>---malloc support
+<<mallinfo>>, <<malloc_stats>>, <<mallopt>>--malloc support
INDEX
mallinfo
@@ -110,7 +110,6 @@ _DEFUN_VOID (mallinfo)
return _mallinfo_r (_REENT);
}
-#if !defined (_ELIX_LEVEL) || _ELIX_LEVEL >= 2
void
_DEFUN_VOID (malloc_stats)
{
@@ -125,12 +124,8 @@ _DEFUN (mallopt, (p, v),
return _mallopt_r (_REENT, p, v);
}
-#endif /* !_ELIX_LEVEL || _ELIX_LEVEL >= 2 */
-
#endif
-#if !defined (_ELIX_LEVEL) || _ELIX_LEVEL >= 2
-
/* mstats is now compatibility code. It used to be real, for a
previous version of the malloc routines. It now just calls
malloc_stats. */
@@ -140,7 +135,6 @@ _DEFUN (_mstats_r, (ptr, s),
struct _reent *ptr _AND
char *s)
{
- _REENT_SMALL_CHECK_INIT(ptr);
fiprintf (_stderr_r (ptr), "Memory allocation statistics %s\n", s);
_malloc_stats_r (ptr);
}
@@ -154,7 +148,4 @@ _DEFUN (mstats, (s),
}
#endif
-
-#endif /* !_ELIX_LEVEL || _ELIX_LEVEL >= 2 */
-
#endif /* ! defined (MALLOC_PROVIDED) */