diff options
| author | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-20 18:59:10 +0200 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal.elmahrouss@icloud.com> | 2024-08-20 18:59:10 +0200 |
| commit | dc33dd4b6722d3fb60aaf10a7472162b07180f9c (patch) | |
| tree | a01a1a08b3bbd7bf13ddd46a53afcacd752bd67b /dev/CRT | |
| parent | 01658f0f5ba1fb3e84d61629f15b8c5221bf66dc (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.hxx | 5 |
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); } |
