diff options
Diffstat (limited to 'lib/dis.h')
-rw-r--r-- | lib/dis.h | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -6,6 +6,12 @@ #include <stdint.h> #include <stdlib.h> +#ifdef __GNUC__ +#define alloca(size) __builtin_alloca(size) +#else +extern void * alloca (size_t __size); +#endif + #define INLINE __attribute__((always_inline)) #define NOINLINE __attribute__((noinline)) |