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