1991-11-22 21:59:01 +00:00
|
|
|
/* System-dependent stuff, for Sony NEwS, Mach, and other systems
|
|
|
|
in the "old BSD Unix" tradition. */
|
1991-11-21 22:49:25 +00:00
|
|
|
|
|
|
|
#ifdef __GNUC__
|
|
|
|
#define alloca __builtin_alloca
|
|
|
|
#else
|
|
|
|
extern char *alloca ();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <sys/dir.h>
|
|
|
|
typedef struct direct dirent;
|