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