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