summaryrefslogtreecommitdiffhomepage
path: root/dev/CRT
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-20 18:59:10 +0200
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-08-20 18:59:10 +0200
commitdc33dd4b6722d3fb60aaf10a7472162b07180f9c (patch)
treea01a1a08b3bbd7bf13ddd46a53afcacd752bd67b /dev/CRT
parent01658f0f5ba1fb3e84d61629f15b8c5221bf66dc (diff)
[FIX] Did fixed the source code of SCI and some files also.
Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'dev/CRT')
-rw-r--r--dev/CRT/__ndk_alloca.hxx5
1 files changed, 4 insertions, 1 deletions
diff --git a/dev/CRT/__ndk_alloca.hxx b/dev/CRT/__ndk_alloca.hxx
index db572bcd..3c796bf2 100644
--- a/dev/CRT/__ndk_alloca.hxx
+++ b/dev/CRT/__ndk_alloca.hxx
@@ -2,6 +2,9 @@
Copyright ZKA Technologies.
+ File: __ndk_alloca.hxx
+ Purpose: Stack allocation functions.
+
------------------------------------------- */
#pragma once
@@ -9,7 +12,7 @@
typedef void* ptr_type;
typedef __SIZE_TYPE__ size_type;
-inline void* __ndk_alloca(size_type sz)
+inline ptr_type __ndk_alloca(size_type sz)
{
return __builtin_alloca(sz);
}