mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[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:
@@ -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