[PATCH 0/1] MR1776: include: Add _recalloc.
This function would be useful in a lot of places in Wine. I wish I had known about it sooner. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1776
From: Alex Henrie <alexhenrie24(a)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*); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/1776
This merge request was approved by Piotr Caban. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/1776
participants (3)
-
Alex Henrie -
Alex Henrie (@alexhenrie) -
Piotr Caban (@piotr)