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