repo.or.cz
/
gnutls.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
corrected typo
[gnutls.git]
/
build-aux
/
snippet
/
_Noreturn.h
blob
1a7b4daed0a18e3939896b4953ef37243ad0e237
1
#ifndef _Noreturn
2
# if (3 <= __GNUC__ || (__GNUC__ == 2 && 8 <= __GNUC_MINOR__) \
3
|| 0x5110 <= __SUNPRO_C)
4
# define _Noreturn __attribute__ ((__noreturn__))
5
# elif 1200 <= _MSC_VER
6
# define _Noreturn __declspec (noreturn)
7
# else
8
# define _Noreturn
9
# endif
10
#endif