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