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