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