diff options
Diffstat (limited to 'manual/arith.texi')
-rw-r--r-- | manual/arith.texi | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/manual/arith.texi b/manual/arith.texi index 56ae6ddb35..39f2a5da58 100644 --- a/manual/arith.texi +++ b/manual/arith.texi @@ -2191,6 +2191,25 @@ In @theglibc{}, this always means the operation is implemented in hardware. @end deftypefun +@deftypefun float fadd (double @var{x}, double @var{y}) +@deftypefunx float faddl (long double @var{x}, long double @var{y}) +@deftypefunx double daddl (long double @var{x}, long double @var{y}) +@deftypefunx _FloatM fMaddfN (_Float@var{N} @var{x}, _Float@var{N} @var{y}) +@deftypefunx _FloatM fMaddfNx (_Float@var{N}x @var{x}, _Float@var{N}x @var{y}) +@deftypefunx _FloatMx fMxaddfN (_Float@var{N} @var{x}, _Float@var{N} @var{y}) +@deftypefunx _FloatMx fMxaddfNx (_Float@var{N}x @var{x}, _Float@var{N}x @var{y}) +@standards{TS 18661-1:2014, math.h} +@standardsx{fMaddfN, TS 18661-3:2015, math.h} +@standardsx{fMaddfNx, TS 18661-3:2015, math.h} +@standardsx{fMxaddfN, TS 18661-3:2015, math.h} +@standardsx{fMxaddfNx, TS 18661-3:2015, math.h} +@safety{@prelim{}@mtsafe{}@assafe{}@acsafe{}} +These functions, from TS 18661-1:2014 and TS 18661-3:2015, return +@math{@var{x} + @var{y}}, rounded once to the return type of the +function without any intermediate rounding to the type of the +arguments. +@end deftypefun + @node Complex Numbers @section Complex Numbers @pindex complex.h |