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

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

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