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