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