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