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