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