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

long long int TGFN(llround)(TYPE x)
{
	return x;
}

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