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