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