summaryrefslogtreecommitdiffstats
path: root/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cpukit/libnetworking/rtems/rtems_malloc_mbuf.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c b/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c
index ca7f527614..628d7dc23f 100644
--- a/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c
+++ b/cpukit/libnetworking/rtems/rtems_malloc_mbuf.c
@@ -21,13 +21,18 @@
#include <rtems/rtems_bsdnet.h>
/*
+ * We want to use the REAL system malloc. Do not let the BSD malloc macro
+ * invade this file.
+ */
+extern void *malloc(size_t);
+
+/*
* Default allocator for mbuf data. Over-ride in user code to change
* the way mbuf's are allocated.
*/
void* rtems_bsdnet_malloc_mbuf(size_t size, int type)
{
- extern void *malloc(size_t);
return malloc(size);
}