Below is the file 'abs.h' from this revision. You can also download the file.
/* abs.h */ #define abs(x) (((x) < 0)? (-(x)) : (x))