mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 14:34:57 +08:00
[WINESYNC] ucrtbase: Implement _calloc_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 fdc57d497bb305e90680c3b450fa172042fd79cd by Alex Henrie <alexhenrie24@gmail.com>
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