From 9a0184dae5723488daf16c86ee8a3741cd70f894 Mon Sep 17 00:00:00 2001 From: Amlal EL Mahrouss Date: Sat, 10 Aug 2024 16:47:14 +0200 Subject: [IMP] Many fixes inside kernel DLL, fixing filesystem now. Signed-off-by: Amlal EL Mahrouss --- CRTKit/__mpcc_alloca.hxx | 2 +- CRTKit/__mpcc_defines.hxx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'CRTKit') 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 -#define __mpcc_alloca(sz) __mpcc_alloca_gcc(sz) +#define __mpcc_alloca(sz) __mpcc_alloca(sz) #elif defined(__NDK__) #define __alloca(sz) __mpcc_alloca(sz) -- cgit v1.2.3