projects
/
sbcl.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Really restore clisp cross-compilation.
[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
}