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