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

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

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