git: 9front

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