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