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