44ef576834ff9827c2df7ee9ac15468a07d134bb
[libjh.git] / header.h
1 #include <assert.h>
2 #include <stddef.h>
3
4 /***** COMPILER-SPECIFIC STUFF *****/
5 #ifdef __GNUC__
6   #define JH_ATTR_NORETURN __attribute__ ((noreturn))
7 #else
8   #define JH_ATTR_NORETURN /* nothing */
9 #endif