* include/malloc.h (__mingw_aligned_offset_malloc,
__mingw_aligned_offset_realloc, __mingw_aligned_malloc, __mingw_aligned_realloc, __mingw_aligned_free): Add prototypes. * mingwex/Makefile.in (DISTFILES): Add mingw-aligned-malloc.c, tst-aligned-malloc.c. (REPLACE_OBJS): Add mingw-aligned-malloc.o.
This commit is contained in:
@ -68,11 +68,19 @@ _CRTIMP void* __cdecl _expand (void*, size_t);
|
||||
_CRTIMP void * __cdecl _aligned_offset_malloc(size_t, size_t, size_t);
|
||||
_CRTIMP void * __cdecl _aligned_offset_realloc(void*, size_t, size_t, size_t);
|
||||
|
||||
_CRTIMP void* __cdecl _aligned_malloc (size_t, size_t);
|
||||
_CRTIMP void* __cdecl _aligned_realloc (void*, size_t, size_t);
|
||||
_CRTIMP void * __cdecl _aligned_malloc (size_t, size_t);
|
||||
_CRTIMP void * __cdecl _aligned_realloc (void*, size_t, size_t);
|
||||
_CRTIMP void __cdecl _aligned_free (void*);
|
||||
#endif /* __MSVCRT_VERSION__ >= 0x0700 */
|
||||
|
||||
/* These require libmingwex.a. */
|
||||
void * __cdecl __mingw_aligned_offset_malloc (size_t, size_t, size_t);
|
||||
void * __cdecl __mingw_aligned_offset_realloc (void*, size_t, size_t, size_t);
|
||||
|
||||
void * __cdecl __mingw_aligned_malloc (size_t, size_t);
|
||||
void * __cdecl __mingw_aligned_realloc (void*, size_t, size_t);
|
||||
void __cdecl __mingw_aligned_free (void*);
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user