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