mirror of
https://github.com/reactos/reactos.git
synced 2025-07-26 22:53:52 +00: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:
parent
0dfd5665c0
commit
7757ebfbad
1 changed files with 8 additions and 0 deletions
|
@ -456,6 +456,14 @@ void* CDECL MSVCRT_malloc(MSVCRT_size_t size)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* _malloc_base (UCRTBASE.@)
|
||||||
|
*/
|
||||||
|
void* CDECL _malloc_base(MSVCRT_size_t size)
|
||||||
|
{
|
||||||
|
return MSVCRT_malloc(size);
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* realloc (MSVCRT.@)
|
* realloc (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue