summaryrefslogtreecommitdiff
path: root/src/math/nextafter.c
blob: 5f2a17ecde2f30f91e3f3eeabad9a18d3a7ebf13 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# define TGSOURCE "nextafter.c"
#include "_tgmath.h"
#include <math.h>

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

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