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