mirror of
https://github.com/ziglang/zig.git
synced 2026-01-02 03:25:01 +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
|
|
|