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