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