git: 9front

ref: 1e07b361502864a9c7cd53b25f29b8580d9444f8
dir: /sys/src/libc/port/fabs.c/

View raw version
#include <u.h>
#include <libc.h>

double
fabs(double arg)
{

	if(arg < 0)
		return -arg;
	return arg;
}