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>
This commit is contained in:
parent
fdc57d497b
commit
5325b8c951
|
@ -14,7 +14,7 @@
|
|||
@ cdecl _heapchk() ucrtbase._heapchk
|
||||
@ cdecl _heapmin() ucrtbase._heapmin
|
||||
@ cdecl _heapwalk(ptr) ucrtbase._heapwalk
|
||||
@ stub _malloc_base
|
||||
@ cdecl _malloc_base(long) ucrtbase._malloc_base
|
||||
@ cdecl _msize(ptr) ucrtbase._msize
|
||||
@ stub _query_new_handler
|
||||
@ stub _query_new_mode
|
||||
|
|
|
@ -432,6 +432,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.@)
|
||||
*/
|
||||
|
|
|
@ -580,7 +580,7 @@
|
|||
@ cdecl _ltow_s(long ptr long long) MSVCRT__ltow_s
|
||||
@ cdecl _makepath(ptr str str str str) MSVCRT__makepath
|
||||
@ cdecl _makepath_s(ptr long str str str str) MSVCRT__makepath_s
|
||||
@ stub _malloc_base
|
||||
@ cdecl _malloc_base(long)
|
||||
@ cdecl _mbbtombc(long)
|
||||
@ stub _mbbtombc_l
|
||||
@ cdecl _mbbtype(long long)
|
||||
|
|
Loading…
Reference in New Issue