USES: just tested with gmp and mpfr on RPi
[tinycc.git] / include / stdalign.h
blobae46c3493fe3e186a1ee803883d076cb5c9dfc7c
1 #ifndef _STDALIGN_H
2 #define _STDALIGN_H
4 #if __STDC_VERSION__ < 201112L && (defined(__GNUC__) || defined(__TINYC__))
5 # define _Alignas(t) __attribute__((__aligned__(t)))
6 # define _Alignof(t) __alignof__(t)
7 #endif
9 #define alignas _Alignas
10 #define alignof _Alignof
12 #define __alignas_is_defined 1
13 #define __alignof_is_defined 1
15 #endif /* _STDALIGN_H */