aboutsummaryrefslogtreecommitdiff
path: root/readline/sysdep-irix.h
blob: e69de15a80e9a1a14d2561fe1b1b69370c027b06 (plain)
1
2
3
4
5
6
7
8
9
10
11
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;