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