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