#ifndef CONFIG_H #define CONFIG_H #define _GNU_SOURCE #include "conf.h" #ifndef WITH_SOPHYA #define NO_SOPHYA #if SIZEOF_SHORT == 4 #define int_4 short int #elif SIZEOF_INT == 4 #define int_4 int #else #define int_4 long #endif #if SIZEOF_LONG == 8 #define int_8 long #else #error long is not 8 bytes... #endif #endif #endif