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