ref: 91922108644eb444fd8942da683e1324598942e7 dir: /lib/c/labs.c/
#include <stdlib.h> #undef labs long labs(long n) { return (n < 0) ? -n : n; }