mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-08-26 19:33:31 +00:00
[WINESYNC] ucrtbase: Implement _calloc_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 fdc57d497bb305e90680c3b450fa172042fd79cd by Alex Henrie <[email protected]>
This commit is contained in:
@@ -429,6 +429,14 @@ void* CDECL MSVCRT_calloc(MSVCRT_size_t count, MSVCRT_size_t size)
|
||||
return msvcrt_heap_alloc(HEAP_ZERO_MEMORY, bytes);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _calloc_base (UCRTBASE.@)
|
||||
*/
|
||||
void* CDECL _calloc_base(MSVCRT_size_t count, MSVCRT_size_t size)
|
||||
{
|
||||
return MSVCRT_calloc(count, size);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* free (MSVCRT.@)
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user