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