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 39f2a5d..116788b 100644 --- a/manual/arith.texi +++ b/manual/arith.texi @@ -2210,6 +2210,25 @@ function without any intermediate rounding to the type of the arguments. @end deftypefun +@deftypefun float fsub (double @var{x}, double @var{y}) +@deftypefunx float fsubl (long double @var{x}, long double @var{y}) +@deftypefunx double dsubl (long double @var{x}, long double @var{y}) +@deftypefunx _FloatM fMsubfN (_Float@var{N} @var{x}, _Float@var{N} @var{y}) +@deftypefunx _FloatM fMsubfNx (_Float@var{N}x @var{x}, _Float@var{N}x @var{y}) +@deftypefunx _FloatMx fMxsubfN (_Float@var{N} @var{x}, _Float@var{N} @var{y}) +@deftypefunx _FloatMx fMxsubfNx (_Float@var{N}x @var{x}, _Float@var{N}x @var{y}) +@standards{TS 18661-1:2014, math.h} +@standardsx{fMsubfN, TS 18661-3:2015, math.h} +@standardsx{fMsubfNx, TS 18661-3:2015, math.h} +@standardsx{fMxsubfN, TS 18661-3:2015, math.h} +@standardsx{fMxsubfNx, 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 |