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