git: 9front

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