ORCA-C/ORCACDefs/stdalign.h
Stephen Heumann d9ebdd10df Header updates for C11 alignment functionality.
This includes the new header <stdalign.h>, the new function aligned_alloc(), and the new typedef max_align_t.
2020-01-12 18:39:07 -06:00

17 lines
343 B
C

/****************************************************************
*
* stdalign.h - standard alignment macros
*
****************************************************************/
#ifndef __stdalign__
#define __stdalign__
#define alignas _Alignas
#define alignof _Alignof
#define __alignas_is_defined 1
#define __alignof_is_defined 1
#endif