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