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