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