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