git: 9front

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