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