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