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