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>
oldstable
Alex Henrie 2016-06-16 18:02:25 -06:00 committed by Alexandre Julliard
parent 5325b8c951
commit e4b8bc0edc
3 changed files with 10 additions and 2 deletions

View File

@ -9,7 +9,7 @@
@ cdecl _callnewh(long) ucrtbase._callnewh
@ cdecl _calloc_base(long long) ucrtbase._calloc_base
@ cdecl _expand(ptr long) ucrtbase._expand
@ stub _free_base
@ cdecl _free_base(ptr) ucrtbase._free_base
@ cdecl _get_heap_handle() ucrtbase._get_heap_handle
@ cdecl _heapchk() ucrtbase._heapchk
@ cdecl _heapmin() ucrtbase._heapmin

View File

@ -421,6 +421,14 @@ void CDECL MSVCRT_free(void* ptr)
msvcrt_heap_free(ptr);
}
/*********************************************************************
* _free_base (UCRTBASE.@)
*/
void CDECL _free_base(void* ptr)
{
msvcrt_heap_free(ptr);
}
/*********************************************************************
* malloc (MSVCRT.@)
*/

View File

@ -333,7 +333,7 @@
@ cdecl _fputwchar(long) MSVCRT__fputwchar
@ cdecl _fread_nolock(ptr long long ptr) MSVCRT__fread_nolock
@ cdecl _fread_nolock_s(ptr long long long ptr) MSVCRT__fread_nolock_s
@ stub _free_base
@ cdecl _free_base(ptr)
@ cdecl _free_locale(ptr) MSVCRT__free_locale
@ cdecl _fseek_nolock(ptr long long) MSVCRT__fseek_nolock
@ cdecl _fseeki64(ptr int64 long) MSVCRT__fseeki64