ref: b28f60cdd3d7efcb5699cb8360e1e50823238d1f dir: /sys/src/ape/lib/ap/math/fabs.c/
#include <math.h> double fabs(double arg) { if(arg < 0) return -arg; return arg; }