libowfat/tryalloca.c

13 lines
143 B
C

#include <stdlib.h>
#ifdef A
#include <alloca.h>
#else
#include <malloc.h>
#endif
int main() {
char* c=alloca(23);
(void)c;
return 0;
}