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