aboutsummaryrefslogtreecommitdiff
path: root/readline/sysdep-irix.h
diff options
context:
space:
mode:
authorStu Grossman <grossman@cygnus>1991-11-21 22:49:25 +0000
committerStu Grossman <grossman@cygnus>1991-11-21 22:49:25 +0000
commita4ff7962b2cd286b5561fd77fbef3e36885f15c0 (patch)
tree767063f5ed5b1653df84f3630c705a1cf8de5af0 /readline/sysdep-irix.h
parente19c9d493286f8980d2232029203a66defad3634 (diff)
downloadfsf-binutils-gdb-a4ff7962b2cd286b5561fd77fbef3e36885f15c0.zip
fsf-binutils-gdb-a4ff7962b2cd286b5561fd77fbef3e36885f15c0.tar.gz
fsf-binutils-gdb-a4ff7962b2cd286b5561fd77fbef3e36885f15c0.tar.bz2
Initial revision
Diffstat (limited to 'readline/sysdep-irix.h')
-rw-r--r--readline/sysdep-irix.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/readline/sysdep-irix.h b/readline/sysdep-irix.h
new file mode 100644
index 0000000..e69de15
--- /dev/null
+++ b/readline/sysdep-irix.h
@@ -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;