Draft NEWS for sbcl-2.4.8
[sbcl.git] / tests / alloca.c
blob977fadd0e4d1661bcff252c44e03de4fc68f3424
1 #include <string.h>
2 #include <stdlib.h>
4 #define SIZE 128*1024 // twice the largest page size
5 void alloca_test()
7 void* foo = alloca(SIZE);
8 memset(foo, 0xff, SIZE);