[SDK] Remove double declaration of _alloca

_alloca() is already defined in sdk/include/crt/malloc.h
This commit is contained in:
Hervé Poussineau 2019-04-04 14:19:27 +02:00
parent 626aaf227c
commit a3e870be51

View file

@ -82,11 +82,6 @@ __INTRIN_INLINE void* __cdecl memcpy(void* dest, const void* source, size_t num)
#define _AddressOfReturnAddress() (&(((void **)(__builtin_frame_address(0)))[1]))
/* TODO: __getcallerseflags but how??? */
/* Maybe the same for x86? */
#ifdef __x86_64__
#define _alloca(s) __builtin_alloca(s)
#endif
/*** Memory barriers ***/
#if !HAS_BUILTIN(_ReadWriteBarrier)