summaryrefslogtreecommitdiff
path: root/src/math/nexttoward.c
blob: 8847df6e714a1734eb36c65c0b8fee6018a3b22c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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)
*/