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