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