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

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

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