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