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