10 lines
191 B
C
Executable file
10 lines
191 B
C
Executable file
/* 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;
|