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