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