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