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