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