shithub: plan9front

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