aboutsummaryrefslogtreecommitdiff
path: root/src/base/math/fabs.c
blob: feef84ec1148ff1c5ea6006b757a2e53dedd3049 (plain)
1
2
3
4
5
6
7
8
9
10
#include <u.h>
#include <base.h>

double
mathยทfabs(double arg)
{
	if(arg < 0)
		return -arg;
	return arg;
}