diff options
author | Ian Lance Taylor <ian@airs.com> | 1998-05-13 17:43:33 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1998-05-13 17:43:33 +0000 |
commit | cb342983caa31e080177318395f36218497d4269 (patch) | |
tree | 79e07b9eb5ae7f9ce641664040ab0308035d60eb /readline/sysdep-6irix.h | |
parent | 95d33c131a7e78d755ce072d8b1da789e49db877 (diff) | |
download | gdb-cb342983caa31e080177318395f36218497d4269.zip gdb-cb342983caa31e080177318395f36218497d4269.tar.gz gdb-cb342983caa31e080177318395f36218497d4269.tar.bz2 |
* sysdep-6irix.h: New file.
* configure.in (*-*-irix6*): New host; use sysdep-6irix.h.
Diffstat (limited to 'readline/sysdep-6irix.h')
-rw-r--r-- | readline/sysdep-6irix.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/readline/sysdep-6irix.h b/readline/sysdep-6irix.h new file mode 100644 index 0000000..f2d4c7a --- /dev/null +++ b/readline/sysdep-6irix.h @@ -0,0 +1,12 @@ +/* System-dependent stuff, for SGI Irix 6. */ + +#ifdef __GNUC__ +#define alloca __builtin_alloca +#else +#include <alloca.h> +#endif + +#include <sys/types.h> +#include <sys/stream.h> +#include <sys/dir.h> +typedef struct direct dirent; |