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