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