summaryrefslogtreecommitdiffstats
path: root/src/tests
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests')
-rw-r--r--src/tests/umalloc_test.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tests/umalloc_test.c b/src/tests/umalloc_test.c
index 98de8784..910edfef 100644
--- a/src/tests/umalloc_test.c
+++ b/src/tests/umalloc_test.c
@@ -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 );