git: 9front

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