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

long int TGFN(lround)(TYPE x)
{
	SIGNAL_SAFE(0);
	return x;
}

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