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