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