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