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

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

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