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