Initial revision
authorJohn Gilmore <gnu@cygnus>
Sat, 9 Nov 1991 11:24:32 +0000 (11:24 +0000)
committerJohn Gilmore <gnu@cygnus>
Sat, 9 Nov 1991 11:24:32 +0000 (11:24 +0000)
readline/sysdep-aix.h [new file with mode: 0644]
readline/sysdep-norm.h [new file with mode: 0644]

diff --git a/readline/sysdep-aix.h b/readline/sysdep-aix.h
new file mode 100644 (file)
index 0000000..9d7bfc5
--- /dev/null
@@ -0,0 +1,3 @@
+/* System-dependent stuff for AIX 3.1 on RS/6000 */
+
+#pragma alloca
diff --git a/readline/sysdep-norm.h b/readline/sysdep-norm.h
new file mode 100644 (file)
index 0000000..e96e431
--- /dev/null
@@ -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