Utility predicates for packing: UNBOUNDED-SC-P and UNBOUNDED-TN-P
[sbcl.git] / tests / alloca.c
1 #include <string.h>
2
3 #define SIZE 128*1024 // twice the largest page size
4 void alloca_test()
5 {
6   void* foo = alloca(SIZE);
7   memset(foo, 0xff, SIZE);
8 }