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

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

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