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