Set up alien stack correctly on non-x86oids.
[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 }