home *** CD-ROM | disk | FTP | other *** search
- /* System-dependent stuff, for Sony NEwS, Mach, and other BSD-derived
- systems */
-
- #ifdef __GNUC__
- #define alloca __builtin_alloca
- #else
- extern char *alloca ();
- #endif
-
- #include <sys/types.h>
- #include <sys/dir.h>
- typedef struct direct dirent;
-
- #ifdef NeXT
- #define xmalloc malloc
- #define xrealloc realloc
- #endif /* NeXT */
-