git: 9front

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