This function would be useful in a lot of places in Wine. I wish I had known about it sooner.
From: Alex Henrie alexhenrie24@gmail.com
--- include/msvcrt/corecrt_malloc.h | 1 + 1 file changed, 1 insertion(+)
diff --git a/include/msvcrt/corecrt_malloc.h b/include/msvcrt/corecrt_malloc.h index 1478a6a6c89..4c0d35f7e08 100644 --- a/include/msvcrt/corecrt_malloc.h +++ b/include/msvcrt/corecrt_malloc.h @@ -30,6 +30,7 @@ _ACRTIMP void* __cdecl calloc(size_t,size_t); _ACRTIMP void __cdecl free(void*); _ACRTIMP void* __cdecl malloc(size_t); _ACRTIMP void* __cdecl realloc(void*,size_t); +_ACRTIMP void* __cdecl _recalloc(void*,size_t,size_t);
_ACRTIMP void* __cdecl _expand(void*,size_t); _ACRTIMP size_t __cdecl _msize(void*);
This merge request was approved by Piotr Caban.