11 lines
191 B
C
11 lines
191 B
C
|
/* 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;
|