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