shithub: plan9front

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