git: 9front

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