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