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