better script using python
[tridge/junkcode.git] / alloca_test.c
1 main()
2 {
3         int i;
4         for (i=0;i<100000;i++) {
5                 char *s = alloca(100000);
6                 memset(s, 0, 100000);
7         }
8         return 0;
9 }