summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/heapwalk
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 05:44:07 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2009-10-26 05:44:07 +0000
commitcbc5c46032cc3dc6a1ce72c4b56f2c298648b741 (patch)
tree6af7b8be846e8eeb1f27a575bb467c1dd657b00a /testsuites/libtests/heapwalk
parent2009-10-26 Ralf Corsépius <ralf.corsepius@rtems.org> (diff)
downloadrtems-cbc5c46032cc3dc6a1ce72c4b56f2c298648b741.tar.bz2
Add missing prototypes.
Diffstat (limited to 'testsuites/libtests/heapwalk')
-rw-r--r--testsuites/libtests/heapwalk/init.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/testsuites/libtests/heapwalk/init.c b/testsuites/libtests/heapwalk/init.c
index 57e0dc2096..b8c6204454 100644
--- a/testsuites/libtests/heapwalk/init.c
+++ b/testsuites/libtests/heapwalk/init.c
@@ -58,7 +58,7 @@ static void *test_allocate_block(void)
return _Heap_Allocate_aligned_with_boundary( &TestHeap, 1, 0, 0 );
}
-static void test_create_heap_with_gaps()
+static void test_create_heap_with_gaps(void)
{
void *p1 = test_allocate_block();
void *p2 = test_allocate_block();
@@ -71,7 +71,7 @@ static void test_create_heap_with_gaps()
_Heap_Free( &TestHeap, p5 );
}
-static void *test_fill_heap()
+static void *test_fill_heap(void)
{
void *p1 = NULL;
void *p2 = NULL;