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