mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-01-31 11:37:35 +00:00
13 lines
279 B
C
13 lines
279 B
C
|
#ifndef COSMOPOLITAN_LIBC_STDALIGN_H_
|
||
|
#define COSMOPOLITAN_LIBC_STDALIGN_H_
|
||
|
|
||
|
#ifndef __cplusplus
|
||
|
#define alignas _Alignas
|
||
|
#define alignof _Alignof
|
||
|
#endif /* __cplusplus */
|
||
|
|
||
|
#define __alignas_is_defined 1
|
||
|
#define __alignof_is_defined 1
|
||
|
|
||
|
#endif /* COSMOPOLITAN_LIBC_STDALIGN_H_ */
|