abs
abs(int i)
#define abs(_a) __builtin_abs(_a)
#define abs(a) __builtin_abs(a)
static __inline int abs(int a) { return (a < 0 ? -a : a); }