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

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

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

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


#endif