blob: 31af763b44784c91c429e1d6c2d3f83f0611a8b7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* 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;
|