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