ref: 595b27669a83cdbd84bfdc13d581ae8fd8c6e0be dir: /libnpe/abs.c/
#include <stdlib.h> long long llabs(long long a) { if(a < 0) return -a; return a; }