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