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