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