X-Git-Url: http://git.etherboot.org/people/mcb30/gpxe.git/blobdiff_plain/544fa259287a2b919d8ed05bc201a5133032ef05..HEAD:/src/tests/umalloc_test.c diff --git a/src/tests/umalloc_test.c b/src/tests/umalloc_test.c index 98de8784..7a361868 100644 --- a/src/tests/umalloc_test.c +++ b/src/tests/umalloc_test.c @@ -1,4 +1,4 @@ -#include +#include #include #include #include @@ -11,9 +11,9 @@ void umalloc_test ( void ) { printf ( "Before allocation:\n" ); get_memmap ( &memmap ); - bob = ymalloc ( 1234 ); - bob = yrealloc ( bob, 12345 ); - fred = ymalloc ( 999 ); + bob = umalloc ( 1234 ); + bob = urealloc ( bob, 12345 ); + fred = umalloc ( 999 ); printf ( "After allocation:\n" ); get_memmap ( &memmap );