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