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