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