X-Git-Url: https://pd.if.org/git/?p=pdclib.old;a=blobdiff_plain;f=functions%2Fstdlib%2Fmalloc.c;h=22718ee67e778439d964d99d834201e878525f1e;hp=2286d0d3c00273c7717faddf802c1652cf60094c;hb=3fa6cbea602e25c5c87eaecd866cf1e7a62e0c48;hpb=192f27e35b606fb47de1dac5b851303bc2e4de20 diff --git a/functions/stdlib/malloc.c b/functions/stdlib/malloc.c index 2286d0d..22718ee 100644 --- a/functions/stdlib/malloc.c +++ b/functions/stdlib/malloc.c @@ -165,8 +165,6 @@ void * sbrk( intptr_t ); int main( void ) { #ifndef REGTEST - printf( "Start of malloc() testing...\n" ); - { void * ptr1, * ptr2, * ptr3, * ptr4, * ptr5, * ptr6, * ptr7, * ptr8, * ptr9; char * pages_start = _PDCLIB_allocpages( 0 ); /* allocating 10 byte; expected: 1 page allocation, node split */ @@ -239,8 +237,6 @@ int main( void ) TESTCASE( memset( ptr9, 0, 4072 ) == ptr9 ); TESTCASE( PAGETEST( 9 ) ); NODETRACE( 17 ); - printf( "End of malloc() testing.\n" ); - } #else puts( "No testing of malloc() - test driver does not know internals of system function." ); #endif