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