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