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