/* common.h */ #ifndef _COMMON_H_ #define _COMMON_H_ #include #include "types.h" #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0])) #endif