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