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