mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-11-25 13:09:48 +00:00
14 lines
243 B
C
14 lines
243 B
C
|
/* System-dependent stuff, for SCO systems */
|
||
|
|
||
|
#include <malloc.h>
|
||
|
|
||
|
#ifdef __GNUC__
|
||
|
#define alloca __builtin_alloca
|
||
|
#endif
|
||
|
|
||
|
#include <sys/types.h>
|
||
|
#include <sys/stream.h>
|
||
|
#include <sys/ptem.h>
|
||
|
#include <dirent.h>
|
||
|
typedef struct dirent dirent;
|