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