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