mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-21 18:11:31 +00: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;
|