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