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