#ifndef COMMON_HH #define COMMON_HH #include #ifdef HAVE_CONFIG_H # include "config.h" #endif #if HAVE_BUILTIN_UNREACHABLE #define NOTREACHED __builtin_unreachable() #else #define NOTREACHED abort() #endif #endif // COMMON_HH