From 96d3f26e1d289ad4b81813e9c52f59c7309ee03d Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Tue, 6 Dec 2011 07:57:10 +0000 Subject: =?UTF-8?q?2011-12-06=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libcsupport/src/malloc_sbrk_helpers.c: Make malloc_sbrk_initialize, malloc_sbrk_extend_and_allocate static. --- cpukit/ChangeLog | 5 +++++ cpukit/libcsupport/src/malloc_sbrk_helpers.c | 6 ++---- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 74905be8b6..d7582b8b39 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,3 +1,8 @@ +2011-12-06 Ralf Corsépius + + * libcsupport/src/malloc_sbrk_helpers.c: Make + malloc_sbrk_initialize, malloc_sbrk_extend_and_allocate static. + 2011-12-06 Ralf Corsépius * libmisc/monitor/mon-network.c: Include . diff --git a/cpukit/libcsupport/src/malloc_sbrk_helpers.c b/cpukit/libcsupport/src/malloc_sbrk_helpers.c index e917fd36af..0fbe7ad29c 100644 --- a/cpukit/libcsupport/src/malloc_sbrk_helpers.c +++ b/cpukit/libcsupport/src/malloc_sbrk_helpers.c @@ -25,7 +25,7 @@ size_t RTEMS_Malloc_Sbrk_amount; -void *malloc_sbrk_initialize( +static void *malloc_sbrk_initialize( void *starting_address, size_t length ) @@ -64,7 +64,7 @@ void *malloc_sbrk_initialize( return starting_address; } -void *malloc_sbrk_extend_and_allocate( +static void *malloc_sbrk_extend_and_allocate( size_t size ) { @@ -108,5 +108,3 @@ rtems_malloc_sbrk_functions_t rtems_malloc_sbrk_helpers_table = { malloc_sbrk_initialize, malloc_sbrk_extend_and_allocate }; - - -- cgit v1.2.3