Add missing prototypes.

This commit is contained in:
Ralf Corsepius
2009-10-26 05:44:07 +00:00
parent 88f692dac2
commit cbc5c46032
4 changed files with 9 additions and 9 deletions

View File

@@ -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;