mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2024-12-02 17:16:42 +00:00
12 lines
209 B
C
12 lines
209 B
C
/* System-dependent stuff, for ``normal'' systems */
|
|
|
|
#ifdef __GNUC__
|
|
#define alloca __builtin_alloca
|
|
#else
|
|
#if defined (sparc) && defined (sun)
|
|
#include <alloca.h>
|
|
#else
|
|
extern char *alloca ();
|
|
#endif
|
|
#endif
|