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