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