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