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