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