Commit 21c42607 authored by Brendan Shanks's avatar Brendan Shanks Committed by Alexandre Julliard

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

parent d36cbc4a
......@@ -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*);
......
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