diff options
author | Reiko Asakura | 2021-01-23 19:35:43 -0500 |
---|---|---|
committer | Reiko Asakura | 2021-01-23 19:35:43 -0500 |
commit | ac14d60c291cc5b5512ddf5c20eff4049e5df4f8 (patch) | |
tree | 8dfcfc73836e333acc896c02f1bb7fbac8ad9815 /lib/dis.h | |
parent | Updated Vita platform to support renamed functions (diff) | |
download | substitute-ac14d60c291cc5b5512ddf5c20eff4049e5df4f8.tar.gz |
Port to Vita Development Suite
Diffstat (limited to '')
-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)) |