summaryrefslogtreecommitdiff
path: root/src/math/nearbyint.c
blob: c3994a62d8cc05cbc68fc47f4c60521f1c2b3d0c (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 0.0;
}

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