mirror of
https://github.com/reactos/reactos.git
synced 2026-05-31 08:17:09 +08:00
[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:
@@ -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.@)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user