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