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

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

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