mirror of
https://github.com/ziglang/zig.git
synced 2025-12-10 16:23:07 +00:00
9 lines
169 B
C
9 lines
169 B
C
#if __STDC_VERSION__ >= 201112L
|
|
#define noreturn _Noreturn
|
|
#elif __GNUC__ && !__STRICT_ANSI__
|
|
#define noreturn __attribute__ ((noreturn))
|
|
#else
|
|
#define noreturn
|
|
#endif
|
|
|