mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 05:44:20 +00:00
11 lines
208 B
C
Vendored
11 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
|