#ifndef COMMON_H #define COMMON_H #ifdef DEBUG # include # define DEBUG_ASSERT(x) assert(x) #else # define DEBUG_ASSERT(x) (void)(x) #endif #endif