#ifndef __LIB_MATH_H__ #define __LIB_MATH_H__ #define min(x, y) (((x) < (y)) ? x : y) #endif /* __LIB_MATH_H__ */