summaryrefslogtreecommitdiffhomepage
path: root/CRTKit
diff options
context:
space:
mode:
authorAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-10 16:47:14 +0200
committerAmlal EL Mahrouss <amlalelmahrouss@icloud.com>2024-08-10 16:47:14 +0200
commit9a0184dae5723488daf16c86ee8a3741cd70f894 (patch)
treec62a21c453853b78a012666a7235c5b300a856d2 /CRTKit
parent8a2cab86eb8723b2f8b4f85c5d09d764003087a3 (diff)
[IMP] Many fixes inside kernel DLL, fixing filesystem now.
Signed-off-by: Amlal EL Mahrouss <amlalelmahrouss@icloud.com>
Diffstat (limited to 'CRTKit')
-rw-r--r--CRTKit/__mpcc_alloca.hxx2
-rw-r--r--CRTKit/__mpcc_defines.hxx2
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)