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