mirror of
https://github.com/ziglang/zig.git
synced 2026-01-28 18:25:26 +00:00
9 lines
157 B
C
9 lines
157 B
C
#if __STDC_VERSION__ >= 201112L
|
|
#define noreturn _Noreturn
|
|
#elif !__STRICT_ANSI__
|
|
#define noreturn __attribute__ ((noreturn))
|
|
#else
|
|
#define noreturn
|
|
#endif
|
|
|