git: 9front

ref: 8c525dcfe1ccf04c8f2279c43d4ef26e87732877
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;
}