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