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