[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]>
This commit is contained in:
Timo Kreuzer
2023-02-02 14:58:08 +01:00
parent 0dfd5665c0
commit 7757ebfbad
+8
View File
@@ -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.@)
*/