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

TYPE TGFN(nearbyint)(TYPE x)
{
	return x;
}

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