mirror of
https://github.com/reactos/reactos.git
synced 2025-06-13 11:08:36 +00:00
[WINESYNC] ucrtbase: Implement _free_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 e4b8bc0edc640b36f2a2a26c53e18edea04fa74c by Alex Henrie <alexhenrie24@gmail.com>
This commit is contained in:
parent
7757ebfbad
commit
aa77776eb0
1 changed files with 8 additions and 0 deletions
|
@ -445,6 +445,14 @@ void CDECL MSVCRT_free(void* ptr)
|
||||||
msvcrt_heap_free(ptr);
|
msvcrt_heap_free(ptr);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*********************************************************************
|
||||||
|
* _free_base (UCRTBASE.@)
|
||||||
|
*/
|
||||||
|
void CDECL _free_base(void* ptr)
|
||||||
|
{
|
||||||
|
msvcrt_heap_free(ptr);
|
||||||
|
}
|
||||||
|
|
||||||
/*********************************************************************
|
/*********************************************************************
|
||||||
* malloc (MSVCRT.@)
|
* malloc (MSVCRT.@)
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue