blob: dbed762459305614a9fa4784fd676a275430a351 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* System-dependent stuff, for Sony NEwS systems */
#ifdef __GNUC__
#define alloca __builtin_alloca
#else
extern char *alloca ();
#endif
#include <sys/dir.h>
typedef struct direct dirent;
|