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