show all threads
[tridge/junkcode.git] / malloc.c
1 main()
2 {
3 int s=1024*1024;
4 char *p;
5 while ((p=(char *)malloc(s))) bzero(p,s);
6 }