summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc_deferred.c
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 13:50:16 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2016-04-06 13:50:16 +0200
commitd7e68c96b46599c7f3277d04ec4d1107ac2ff594 (patch)
treebb3a1273e8eca5d87b81381d606b56a590be1f95 /cpukit/libcsupport/src/malloc_deferred.c
parentscore: Delete _Chain_Append() (diff)
downloadrtems-d7e68c96b46599c7f3277d04ec4d1107ac2ff594.tar.bz2
malloc: Fix early realloc() allocation
Diffstat (limited to 'cpukit/libcsupport/src/malloc_deferred.c')
-rw-r--r--cpukit/libcsupport/src/malloc_deferred.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/cpukit/libcsupport/src/malloc_deferred.c b/cpukit/libcsupport/src/malloc_deferred.c
index 2a4f5c892b..977ec7b3f6 100644
--- a/cpukit/libcsupport/src/malloc_deferred.c
+++ b/cpukit/libcsupport/src/malloc_deferred.c
@@ -63,7 +63,7 @@ static void *_Malloc_Get_deferred_free( void )
return p;
}
-static void _Malloc_Process_deferred_frees( void )
+void _Malloc_Process_deferred_frees( void )
{
rtems_chain_node *to_be_freed;