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