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