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