summaryrefslogtreecommitdiff
path: root/src/math/nexttoward.c
blob: 148bf95d7d2253073f84a599c68f4c1ba72fe5f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#if 0

# define TGSOURCE "nexttoward.c"
#include "_tgmath.h"
#include <math.h>

TYPE TGFN(nexttoward)(TYPE x, TYPE y)
{
	SIGNAL_SAFE(0);
	return x - y;
}

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


#endif