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