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