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