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