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