Mon Nov 11 20:50:29 1991 Steve Chamberlain (sac at cygnus.com)
[deliverable/binutils-gdb.git] / readline / sysdep-norm.h
1 /* System-dependent stuff, for ``normal'' systems */
2
3 #ifdef __GNUC__
4 #define alloca __builtin_alloca
5 #else
6 #if defined (sparc) && defined (sun)
7 #include <alloca.h>
8 #else
9 extern char *alloca ();
10 #endif
11 #endif
This page took 0.029789 seconds and 4 git commands to generate.