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