summaryrefslogtreecommitdiffstats
path: root/cpukit/libcsupport/src/malloc_deferred.c
diff options
context:
space:
mode:
Diffstat (limited to 'cpukit/libcsupport/src/malloc_deferred.c')
-rw-r--r--cpukit/libcsupport/src/malloc_deferred.c15
1 files changed, 0 insertions, 15 deletions
diff --git a/cpukit/libcsupport/src/malloc_deferred.c b/cpukit/libcsupport/src/malloc_deferred.c
index f66dd54676..b319d1213e 100644
--- a/cpukit/libcsupport/src/malloc_deferred.c
+++ b/cpukit/libcsupport/src/malloc_deferred.c
@@ -112,19 +112,4 @@ void *rtems_malloc( size_t size )
return rtems_heap_allocate_aligned_with_boundary( size, 0, 0 );
}
-
-void *rtems_calloc( size_t nelem, size_t elsize )
-{
- size_t length;
- void *p;
-
- length = nelem * elsize;
- p = rtems_malloc( length );
- RTEMS_OBFUSCATE_VARIABLE( p );
- if ( RTEMS_PREDICT_FALSE( p == NULL ) ) {
- return p;
- }
-
- return memset( p, 0, length );
-}
#endif