/* This is a kludge to get the prototypes for alloca.c right on the Amiga
 * so it can be compiled with the parm=r or parm=b option.
 */

#ifdef __SASC
#include <stdlib.h> /* Get prototype for free() */
#include "flexdef.h" /* Get prototype for yy_flex_xmalloc() */
#undef NULL /* NULL is defined in <stdio.h> and redefined in alloca.c */

extern void *alloca(unsigned size);
#endif
