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