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