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