mirror of
https://git.zap.org.au/git/trader.git
synced 2024-10-27 18:20:13 -04:00
304269717c
These files have been created by running ./build-aux/bootstrap with Gnulib as at commit 5e0faf88718e9329e44c773039166c7dbf3ca57c (with a date stamp of Fri May 19 19:27:51 2017 +0200), Autoconf 2.69, Automake 1.15 and Gettext 0.19.8.1.
11 lines
306 B
C
11 lines
306 B
C
#if !defined _Noreturn && __STDC_VERSION__ < 201112
|
|
# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
|
|
|| 0x5110 <= __SUNPRO_C)
|
|
# define _Noreturn __attribute__ ((__noreturn__))
|
|
# elif 1200 <= _MSC_VER
|
|
# define _Noreturn __declspec (noreturn)
|
|
# else
|
|
# define _Noreturn
|
|
# endif
|
|
#endif
|