libowfat/tryalloca.c

7 lines
74 B
C

#include <stdlib.h>
#include <alloca.h>
main() {
char* c=alloca(23);
}