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