git: 9front

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