ref: b1ecaf84c8bf6c2801bf2c3d0899916a7a558338 dir: /sys/src/libc/port/fabs.c/
#include <u.h> #include <libc.h> double fabs(double arg) { if(arg < 0) return -arg; return arg; }