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

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

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