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