Add a bunch of config files to .Sanitize, add some config stuff to Makefile.in
[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.037587 seconds and 4 git commands to generate.