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