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

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

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