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