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

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

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