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