/* $Id: alloca-conf.h,v 1.1 1995/10/18 08:40:12 deraadt Exp $ */ /* "Normal" configuration for alloca. */ #ifdef __GNUC__ #define alloca __builtin_alloca #else /* not __GNUC__ */ #ifdef sparc #include #else char *alloca (); #endif /* sparc */ #endif /* not __GNUC__ */