https://git.reactos.org/?p=reactos.git;a=commitdiff;h=aa77776eb0f88c08f772f585868ad4da241a524c
commit aa77776eb0f88c08f772f585868ad4da241a524c Author: Timo Kreuzer <[email protected]> AuthorDate: Fri Jun 17 03:02:25 2016 +0300 Commit: Timo Kreuzer <[email protected]> CommitDate: Thu Feb 2 14:58:08 2023 +0100 [WINESYNC] ucrtbase: Implement _free_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 e4b8bc0edc640b36f2a2a26c53e18edea04fa74c 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 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.@) */
