mirror of
https://github.com/byteworksinc/ORCA-C.git
synced 2024-10-31 17:04:42 +00:00
d9ebdd10df
This includes the new header <stdalign.h>, the new function aligned_alloc(), and the new typedef max_align_t.
17 lines
343 B
C
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
|