mirror of
https://github.com/reactos/reactos.git
synced 2025-07-28 15:02:16 +00:00
[WINESYNC] ucrtbase: Implement _realloc_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 8a69c5d81f8deb472df18a8e16e57efef2eb9a9a by Alex Henrie <alexhenrie24@gmail.com>
This commit is contained in:
parent
aa77776eb0
commit
6360937cd4
1 changed files with 8 additions and 0 deletions
|
@ -483,6 +483,14 @@ void* CDECL MSVCRT_realloc(void* ptr, MSVCRT_size_t size)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _realloc_base (UCRTBASE.@)
|
||||
*/
|
||||
void* CDECL _realloc_base(void* ptr, MSVCRT_size_t size)
|
||||
{
|
||||
return MSVCRT_realloc(ptr, size);
|
||||
}
|
||||
|
||||
/*********************************************************************
|
||||
* _recalloc (MSVCR100.@)
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue