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