make-it-quick/config/check_alloca.c

8 lines
81 B
C

#include <alloca.h>
int main()
{
void *result = alloca(20);
return 0;
}