diff options
Diffstat (limited to 'CRTKit')
| -rw-r--r-- | CRTKit/__mpcc_alloca.hxx | 2 | ||||
| -rw-r--r-- | CRTKit/__mpcc_defines.hxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/CRTKit/__mpcc_alloca.hxx b/CRTKit/__mpcc_alloca.hxx index 02b31230..cc123ac5 100644 --- a/CRTKit/__mpcc_alloca.hxx +++ b/CRTKit/__mpcc_alloca.hxx @@ -9,7 +9,7 @@ typedef void* ptr_type; typedef __SIZE_TYPE__ size_type; -inline void* __mpcc_alloca_gcc(size_type sz) +inline void* __mpcc_alloca(size_type sz) { return __builtin_alloca(sz); } diff --git a/CRTKit/__mpcc_defines.hxx b/CRTKit/__mpcc_defines.hxx index dbd20493..3047ef2b 100644 --- a/CRTKit/__mpcc_defines.hxx +++ b/CRTKit/__mpcc_defines.hxx @@ -29,7 +29,7 @@ typedef char* caddr_t; #ifdef __GNUC__ #include <CRT/__mpcc_alloca.hxx> -#define __mpcc_alloca(sz) __mpcc_alloca_gcc(sz) +#define __mpcc_alloca(sz) __mpcc_alloca(sz) #elif defined(__NDK__) #define __alloca(sz) __mpcc_alloca(sz) |
