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

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

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