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