DEBSOURCES
Skip Quicknav
sources / libowfat / 0.34-2 / tryalloca.c
123456789101112
#include <stdlib.h> #ifdef A #include <alloca.h> #else #include <malloc.h> #endif int main() { char* c=alloca(23); (void)c; return 0; }