mirror of
https://github.com/ziglang/zig.git
synced 2025-12-12 09:13:11 +00:00
16 lines
320 B
C
16 lines
320 B
C
#if __STDC_VERSION__ >= 201112L
|
|
#define zig_noreturn _Noreturn
|
|
#elif __GNUC__
|
|
#define zig_noreturn __attribute__ ((noreturn))
|
|
#elif _MSC_VER
|
|
#define zig_noreturn __declspec(noreturn)
|
|
#else
|
|
#define zig_noreturn
|
|
#endif
|
|
|
|
#if __GNUC__
|
|
#define zig_unreachable() __builtin_unreachable()
|
|
#else
|
|
#define zig_unreachable()
|
|
#endif
|