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