mirror of
https://github.com/reactos/reactos.git
synced 2025-04-27 09:00:27 +00: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:
parent
1d6ec8555d
commit
0dfd5665c0
1 changed files with 8 additions and 0 deletions
|
@ -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.@)
|
||||
*/
|
||||
|
|
Loading…
Reference in a new issue