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