1e6ab1362c692fc8c079fe8ad8d9adc4763988bc
[sbcl.git] / tests / alloca.c
1 #include <alloca.h>
2 #include <string.h>
3
4 #define SIZE 128*1024 // twice the largest page size
5 void alloca_test()
6 {
7   void* foo = alloca(SIZE);
8   memset(foo, 0xff, SIZE);
9 }