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