Initial revision
This commit is contained in:
parent
19405dda98
commit
51493cdb63
3
readline/sysdep-aix.h
Normal file
3
readline/sysdep-aix.h
Normal file
@ -0,0 +1,3 @@
|
||||
/* System-dependent stuff for AIX 3.1 on RS/6000 */
|
||||
|
||||
#pragma alloca
|
11
readline/sysdep-norm.h
Normal file
11
readline/sysdep-norm.h
Normal file
@ -0,0 +1,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
|
Loading…
Reference in New Issue
Block a user