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