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