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