git: 9front

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