binutils-gdb/readline/sysdep-6irix.h
Ian Lance Taylor cb342983ca * sysdep-6irix.h: New file.
* configure.in (*-*-irix6*): New host; use sysdep-6irix.h.
1998-05-13 17:43:33 +00:00

13 lines
228 B
C

/* 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;