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