From 7757ebfbad26c9bd5200fa734b2b65de4df4b5ec Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 17 Jun 2016 03:02:24 +0300 Subject: [PATCH] [WINESYNC] ucrtbase: Implement _malloc_base. Signed-off-by: Alex Henrie Signed-off-by: Piotr Caban Signed-off-by: Alexandre Julliard wine commit id 5325b8c95112be75f4fa0e2e2e45bcc88434fb5d by Alex Henrie --- 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.@) */