aboutsummaryrefslogtreecommitdiff
path: root/readline/sysdep-norm.h
blob: e96e431ba1efb5ba2808543845336b6c35cf54eb (plain)
1
2
3
4
5
6
7
8
9
10
11
/* System-dependent stuff, for ``normal'' systems */

#ifdef __GNUC__
#define alloca __builtin_alloca
#else
#if defined (sparc) && defined (sun)
#include <alloca.h>
#else
extern char *alloca ();
#endif
#endif