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