summaryrefslogtreecommitdiff
path: root/src/math/round.c
blob: 504bcead7ef9b7a9ea1320172b96fde71192084a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# define TGSOURCE "round.c"
#include "nonstd/tgmath.h"
#include <math.h>

TYPE TGFN(round)(TYPE x)
{
	return x;
}

/*
STDC(199901)
LINK(m)
*/