[WINESYNC] ucrtbase: Implement _malloc_base.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Piotr Caban <piotr@codeweavers.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>

wine commit id 5325b8c95112be75f4fa0e2e2e45bcc88434fb5d by Alex Henrie <alexhenrie24@gmail.com>
This commit is contained in:
Timo Kreuzer 2016-06-17 03:02:24 +03:00
parent 0dfd5665c0
commit 7757ebfbad

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.@)
*/