mirror of
https://git.code.sf.net/p/mingw-w64/mingw-w64
synced 2024-11-27 03:43:37 +08:00
headers: crt: Add declarations for _aligned_msize
Signed-off-by: Alvin Wong <alvin@alvinhc.com> Signed-off-by: LIU Hao <lh_mouse@126.com>
This commit is contained in:
parent
1d5ef196dd
commit
596e965e83
@ -156,6 +156,7 @@ extern "C" {
|
||||
#define _recalloc_dbg(p,c,s,t,f,l) _recalloc(p,c,s)
|
||||
#define _aligned_recalloc_dbg(p,c,s,a,f,l) _aligned_realloc(p,c,s,a)
|
||||
#define _aligned_offset_recalloc_dbg(p,c,s,a,o,f,l) _aligned_offset_recalloc(p,c,s,a,o)
|
||||
#define _aligned_msize_dbg(p,a,o) _aligned_msize(p,a,o)
|
||||
#endif
|
||||
|
||||
#define _malloca_dbg(s,t,f,l) _malloca(s)
|
||||
|
@ -69,6 +69,7 @@ extern "C" {
|
||||
_CRTIMP void *__cdecl _recalloc(void *_Memory,size_t _Count,size_t _Size);
|
||||
_CRTIMP void *__cdecl _aligned_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment);
|
||||
_CRTIMP void *__cdecl _aligned_offset_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment,size_t _Offset);
|
||||
_CRTIMP size_t __cdecl _aligned_msize(void *_Memory,size_t _Alignment,size_t _Offset);
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
@ -546,6 +546,7 @@ float __cdecl __MINGW_NOTHROW strtof(const char * __restrict__ _Str,char ** __re
|
||||
_CRTIMP void *__cdecl _recalloc(void *_Memory,size_t _Count,size_t _Size);
|
||||
_CRTIMP void *__cdecl _aligned_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment);
|
||||
_CRTIMP void *__cdecl _aligned_offset_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment,size_t _Offset);
|
||||
_CRTIMP size_t __cdecl _aligned_msize(void *_Memory,size_t _Alignment,size_t _Offset);
|
||||
# endif
|
||||
#endif
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user