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