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

# define TGSOURCE "lround.c"
#include "_tgmath.h"
#include <math.h>

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

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


#endif