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