david/ipxe
david
/
ipxe
Archived
1
0
Fork 0
This commit is contained in:
Michael Brown 2007-01-19 00:48:13 +00:00
parent b02a564297
commit a213876382
1 changed files with 3 additions and 3 deletions

View File

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