1
0
mirror of https://github.com/wine-mirror/wine synced 2024-07-01 07:14:31 +00:00

include/msvcrt: Add __WINE_(ALLOC_SIZE|DEALLOC) attributes to _recalloc.

This commit is contained in:
Brendan Shanks 2022-12-14 10:37:33 -08:00 committed by Alexandre Julliard
parent d36cbc4a57
commit 21c4260792

View File

@ -30,7 +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 _recalloc(void*,size_t,size_t) __WINE_ALLOC_SIZE(2,3) __WINE_DEALLOC(free);
_ACRTIMP void* __cdecl _expand(void*,size_t);
_ACRTIMP size_t __cdecl _msize(void*);