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