From aa77776eb0f88c08f772f585868ad4da241a524c Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Fri, 17 Jun 2016 03:02:25 +0300 Subject: [PATCH] [WINESYNC] ucrtbase: Implement _free_base. Signed-off-by: Alex Henrie Signed-off-by: Piotr Caban Signed-off-by: Alexandre Julliard wine commit id e4b8bc0edc640b36f2a2a26c53e18edea04fa74c 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 88db61657c4..ae5e8fa31ee 100644 --- a/sdk/lib/crt/wine/heap.c +++ b/sdk/lib/crt/wine/heap.c @@ -445,6 +445,14 @@ void CDECL MSVCRT_free(void* ptr) msvcrt_heap_free(ptr); } +/********************************************************************* + * _free_base (UCRTBASE.@) + */ +void CDECL _free_base(void* ptr) +{ + msvcrt_heap_free(ptr); +} + /********************************************************************* * malloc (MSVCRT.@) */