1 /* Generates recursive malloc call on i386-freebsd4.10 with -fmudflap. */ 2 #include <stdlib.h> 3 4 int 5 main (void) 6 { 7 char *p = malloc (1<<24); 8 return 0; 9 } 10