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