blob: 64495adbd58037d7ce62f122027d8e4a5eb12fbe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#if 0
# define TGSOURCE "scalbln.c"
#include "_tgmath.h"
#include <math.h>
TYPE TGFN(scalbln)(TYPE x, long int n)
{
SIGNAL_SAFE(0);
return x - n;
}
/* c99
Description
2
The scalbn and scalbln functions compute x × FLT_RADIX n efficiently, not
normally by computing FLT_RADIX n explicitly. A range error may occur.
Returns
3
The scalbn and scalbln functions return x × FLT_RADIX n .
*/
/*
STDC(199901)
LINK(m)
*/
#endif
|