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