mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-26 19:44:11 +08:00
12 lines
245 B
C
Executable File
12 lines
245 B
C
Executable File
/* System-dependent stuff, for Sony NEwS, Mach, and other systems
|
|
in the "old BSD Unix" tradition. */
|
|
|
|
#ifdef __GNUC__
|
|
#define alloca __builtin_alloca
|
|
#else
|
|
extern char *alloca ();
|
|
#endif
|
|
|
|
#include <sys/dir.h>
|
|
typedef struct direct dirent;
|