2
0
mirror of https://github.com/xcat2/xNBA.git synced 2024-12-14 15:21:32 +00:00
This commit is contained in:
Michael Brown 2007-01-19 00:48:13 +00:00
parent b02a564297
commit a213876382

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