Parcourir la source

Typo

tags/v0.9.3
Michael Brown il y a 19 ans
Parent
révision
a213876382
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3
    3
      src/tests/umalloc_test.c

+ 3
- 3
src/tests/umalloc_test.c Voir le fichier

11
 	printf ( "Before allocation:\n" );
11
 	printf ( "Before allocation:\n" );
12
 	get_memmap ( &memmap );
12
 	get_memmap ( &memmap );
13
 
13
 
14
-	bob = ymalloc ( 1234 );
15
-	bob = yrealloc ( bob, 12345 );
16
-	fred = ymalloc ( 999 );
14
+	bob = umalloc ( 1234 );
15
+	bob = urealloc ( bob, 12345 );
16
+	fred = umalloc ( 999 );
17
 
17
 
18
 	printf ( "After allocation:\n" );
18
 	printf ( "After allocation:\n" );
19
 	get_memmap ( &memmap );
19
 	get_memmap ( &memmap );

Chargement…
Annuler
Enregistrer