1991-11-23 02:49:55 +01:00
|
|
|
/* 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
|
|
|
|
|
1992-06-20 00:50:08 +02:00
|
|
|
#include <sys/types.h>
|
1991-11-23 02:49:55 +01:00
|
|
|
#include <sys/dir.h>
|
|
|
|
typedef struct direct dirent;
|