mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 03:51:15 +08:00
11 lines
190 B
C
Executable File
11 lines
190 B
C
Executable File
/* System-dependent stuff, for Sony NEwS systems */
|
|
|
|
#ifdef __GNUC__
|
|
#define alloca __builtin_alloca
|
|
#else
|
|
extern char *alloca ();
|
|
#endif
|
|
|
|
#include <sys/dir.h>
|
|
typedef struct direct dirent;
|