#ifndef __COMMON_H #define __COMMON_H #define min(x,y) ((x)<(y)?(x):(y)) #define max(x,y) ((x)>(y)?(x):(y)) #endif // __COMMON_H