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