mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-29 06:50:32 +00:00
13 lines
228 B
C
13 lines
228 B
C
/* 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;
|