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