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