mirror of
https://github.com/ziglang/zig.git
synced 2025-12-06 06:13:07 +00:00
12 lines
208 B
C
Vendored
12 lines
208 B
C
Vendored
/* <stdalign.h> for the Aro C compiler */
|
|
|
|
#pragma once
|
|
#if __STDC_VERSION__ < 202311L
|
|
|
|
#define alignas _Alignas
|
|
#define alignof _Alignof
|
|
|
|
#define __alignas_is_defined 1
|
|
#define __alignof_is_defined 1
|
|
#endif
|