summaryrefslogtreecommitdiff
path: root/tests/alloca.c
blob: 977fadd0e4d1661bcff252c44e03de4fc68f3424 (plain)
1
2
3
4
5
6
7
8
9
#include <string.h>
#include <stdlib.h>

#define SIZE 128*1024 // twice the largest page size
void alloca_test()
{
  void* foo = alloca(SIZE);
  memset(foo, 0xff, SIZE);
}