summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc_report_statistics.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/malloc_report_statistics.c')
-rw-r--r--cpukit/libcsupport/src/malloc_report_statistics.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/cpukit/libcsupport/src/malloc_report_statistics.c b/cpukit/libcsupport/src/malloc_report_statistics.c
deleted file mode 100644
index d726b72ed2..0000000000
--- a/cpukit/libcsupport/src/malloc_report_statistics.c
+++ /dev/null
@@ -1,29 +0,0 @@
-/**
- * @file
- *
- * @brief Print Malloc Statistic Usage Report
- * @ingroup MallocSupport
- */
-
-/*
- * COPYRIGHT (c) 1989-2007.
- * On-Line Applications Research Corporation (OAR).
- *
- * The license and distribution terms for this file may be
- * found in the file LICENSE in this distribution or at
- * http://www.rtems.org/license/LICENSE.
- */
-
-#if HAVE_CONFIG_H
-#include "config.h"
-#endif
-
-#ifdef RTEMS_NEWLIB
-#include "malloc_p.h"
-
-void malloc_report_statistics(void)
-{
- malloc_report_statistics_with_plugin( NULL, printk_plugin );
-}
-
-#endif