view libmudflap/testsuite/libmudflap.c/hook2-allocstuff.c @ 77:65b2ea5f1266

documents
author Shinji KONO <kono@ie.u-ryukyu.ac.jp>
date Tue, 20 Sep 2011 17:16:36 +0900
parents a06113de4d67
children
line wrap: on
line source

/* Generates recursive malloc call on i386-freebsd4.10 with -fmudflap.  */
#include <stdlib.h>

int
main (void)
{
  char *p = malloc (1<<24);
  return 0;
}