Initial revision

This commit is contained in:
John Gilmore 1991-11-09 11:24:32 +00:00
parent 19405dda98
commit 51493cdb63
2 changed files with 14 additions and 0 deletions

3
readline/sysdep-aix.h Normal file
View File

@ -0,0 +1,3 @@
/* System-dependent stuff for AIX 3.1 on RS/6000 */
#pragma alloca

11
readline/sysdep-norm.h Normal file
View 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