summaryrefslogtreecommitdiff
path: root/src/math/lround.c
blob: 8cbd927598b402377df9bf46e87232b9584a1610 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#if 0

# 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)
*/


#endif