Make INFO's compiler-macro more forgiving.
[sbcl.git] / tests / alloca.c
blob18c4b235f13943bddaa5df8873e48933fbbed491
1 #include <string.h>
3 #define SIZE 128*1024 // twice the largest page size
4 void alloca_test()
6 void* foo = alloca(SIZE);
7 memset(foo, 0xff, SIZE);