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