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