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