Commit 8a69c5d8 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

ucrtbase: Implement _realloc_base.

parent e4b8bc0e
......@@ -18,7 +18,7 @@
@ cdecl _msize(ptr) ucrtbase._msize
@ stub _query_new_handler
@ stub _query_new_mode
@ stub _realloc_base
@ cdecl _realloc_base(ptr long) ucrtbase._realloc_base
@ cdecl _recalloc(ptr long long) ucrtbase._recalloc
@ cdecl _set_new_mode(long) ucrtbase._set_new_mode
@ cdecl calloc(long long) ucrtbase.calloc
......
......@@ -460,6 +460,14 @@ void* CDECL MSVCRT_realloc(void* ptr, MSVCRT_size_t size)
}
/*********************************************************************
* _realloc_base (UCRTBASE.@)
*/
void* CDECL _realloc_base(void* ptr, MSVCRT_size_t size)
{
return MSVCRT_realloc(ptr, size);
}
/*********************************************************************
* _recalloc (MSVCR100.@)
*/
void* CDECL _recalloc(void *mem, MSVCRT_size_t num, MSVCRT_size_t size)
......
......@@ -1859,7 +1859,7 @@
@ stub _query_new_handler
@ stub _query_new_mode
@ cdecl _read(long ptr long) MSVCRT__read
@ stub _realloc_base
@ cdecl _realloc_base(ptr long)
@ cdecl _recalloc(ptr long long)
@ cdecl _register_onexit_function(ptr ptr) MSVCRT__register_onexit_function
@ stub _register_thread_local_exe_atexit_callback
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment