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