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