git: 9front

ref: 09728f26557950c4367340e97e60a12f1ae526ec
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;
}