https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7757ebfbad26c9bd5200fa734b2b65de4df4b5ec
commit 7757ebfbad26c9bd5200fa734b2b65de4df4b5ec Author: Timo Kreuzer <[email protected]> AuthorDate: Fri Jun 17 03:02:24 2016 +0300 Commit: Timo Kreuzer <[email protected]> CommitDate: Thu Feb 2 14:58:08 2023 +0100 [WINESYNC] ucrtbase: Implement _malloc_base. Signed-off-by: Alex Henrie <[email protected]> Signed-off-by: Piotr Caban <[email protected]> Signed-off-by: Alexandre Julliard <[email protected]> wine commit id 5325b8c95112be75f4fa0e2e2e45bcc88434fb5d by Alex Henrie <[email protected]> --- sdk/lib/crt/wine/heap.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sdk/lib/crt/wine/heap.c b/sdk/lib/crt/wine/heap.c index 66fcf5b4b82..88db61657c4 100644 --- a/sdk/lib/crt/wine/heap.c +++ b/sdk/lib/crt/wine/heap.c @@ -456,6 +456,14 @@ void* CDECL MSVCRT_malloc(MSVCRT_size_t size) return ret; } +/********************************************************************* + * _malloc_base (UCRTBASE.@) + */ +void* CDECL _malloc_base(MSVCRT_size_t size) +{ + return MSVCRT_malloc(size); +} + /********************************************************************* * realloc (MSVCRT.@) */
