add JH_ATTR_NORETURN
[libjh.git] / header.h
1 /***** COMPILER-SPECIFIC STUFF *****/
2 #ifdef __GNUC__
3   #define JH_ATTR_NORETURN __attribute__ ((noreturn))
4 #else
5   #define JH_ATTR_NORETURN /* nothing */
6 #endif