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