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