ABS
#define ABS(x) ((x < 0) ? -(x) : (x))
#define ABS(_name_, _value_) \
#define ABS(x) ((x) < 0 ? -(x) : (x))
#undef ABS