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