blob: 7e6cd87a763f155fe7eed573a867e72921a39636 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#if 0
# 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)
*/
#endif
|