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