1 #include <stdlib.h> 2 3 // In this test, the size of the insignificant nodes is greater than the 4 // size of two of the significant nodes. This is quite common in big 5 // programs, but not so common in small tests, so we test for it here. main(void)6int main(void) 7 { 8 malloc(16000); // all sizes are divisible by 16 -- no slop 9 malloc(240); 10 malloc(192); 11 malloc(16); 12 malloc(16); 13 malloc(16); 14 malloc(16); 15 malloc(16); 16 malloc(16); 17 malloc(16); 18 malloc(16); 19 malloc(16); 20 malloc(16); 21 malloc(16); 22 malloc(16); 23 malloc(16); 24 malloc(16); 25 malloc(16); 26 malloc(16); 27 malloc(16); 28 malloc(16); 29 malloc(16); 30 malloc(16); 31 32 33 return 0; 34 } 35