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