git: 9front

ref: 3b82afa72f80a73ea1a801cd1ff3def12cb0bc1d
dir: /sys/src/ape/lib/ap/math/fabs.c/

View raw version
#include <math.h>

double
fabs(double arg)
{

	if(arg < 0)
		return -arg;
	return arg;
}