Initial revision
authorStu Grossman <grossman@cygnus>
Thu, 21 Nov 1991 22:49:25 +0000 (22:49 +0000)
committerStu Grossman <grossman@cygnus>
Thu, 21 Nov 1991 22:49:25 +0000 (22:49 +0000)
readline/sysdep-irix.h [new file with mode: 0644]
readline/sysdep-newsos.h [new file with mode: 0755]
readline/sysdep-oldbsd.h [new file with mode: 0755]
readline/sysdep-sco.h [new file with mode: 0644]

diff --git a/readline/sysdep-irix.h b/readline/sysdep-irix.h
new file mode 100644 (file)
index 0000000..e69de15
--- /dev/null
@@ -0,0 +1,12 @@
+/* System-dependent stuff, for SGI irix */
+
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#else
+extern char *alloca ();
+#endif
+
+#include <sys/types.h>
+#include <sys/stream.h>
+#include <sys/dir.h>
+typedef struct direct dirent;
diff --git a/readline/sysdep-newsos.h b/readline/sysdep-newsos.h
new file mode 100755 (executable)
index 0000000..96078a2
--- /dev/null
@@ -0,0 +1,10 @@
+/* System-dependent stuff, for ``normal'' systems */
+
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#else
+extern char *alloca ();
+#endif
+
+#include <sys/dir.h>
+typedef struct direct dirent;
diff --git a/readline/sysdep-oldbsd.h b/readline/sysdep-oldbsd.h
new file mode 100755 (executable)
index 0000000..96078a2
--- /dev/null
@@ -0,0 +1,10 @@
+/* System-dependent stuff, for ``normal'' systems */
+
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#else
+extern char *alloca ();
+#endif
+
+#include <sys/dir.h>
+typedef struct direct dirent;
diff --git a/readline/sysdep-sco.h b/readline/sysdep-sco.h
new file mode 100644 (file)
index 0000000..31af763
--- /dev/null
@@ -0,0 +1,13 @@
+/* System-dependent stuff, for SCO systems */
+
+#include <malloc.h>
+
+#ifdef __GNUC__
+#define alloca __builtin_alloca
+#endif
+
+#include <sys/types.h>
+#include <sys/stream.h>
+#include <sys/ptem.h>
+#include <dirent.h>
+typedef struct dirent dirent;