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