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