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