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