blob: 88bcdd613252f305aaf5e174926c4b205de91008 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* System-dependent stuff, for Sony NEwS, Mach, and other systems
in the "old BSD Unix" tradition. */
#ifdef __GNUC__
#define alloca __builtin_alloca
#else
extern char *alloca ();
#endif
#include <sys/types.h>
#include <sys/dir.h>
typedef struct direct dirent;
|