diff options
author | Yaakov Selkowitz <yselkowi@redhat.com> | 2017-11-30 02:37:42 -0600 |
---|---|---|
committer | Yaakov Selkowitz <yselkowi@redhat.com> | 2017-12-01 03:41:53 -0600 |
commit | 59822e777f4221be40745ed0ec087ea3e9bc65d4 (patch) | |
tree | 30c7dee6ed487de0ee6dc71674273260b3372ded | |
parent | ac8b60bdd1214688383be83749de21ab26ca914d (diff) | |
download | cygnal-59822e777f4221be40745ed0ec087ea3e9bc65d4.tar.gz cygnal-59822e777f4221be40745ed0ec087ea3e9bc65d4.tar.bz2 cygnal-59822e777f4221be40745ed0ec087ea3e9bc65d4.zip |
libm/machine: remove TRAD_SYNOPSIS
Signed-off-by: Yaakov Selkowitz <yselkowi@redhat.com>
-rw-r--r-- | newlib/libm/machine/i386/f_llrint.c | 5 | ||||
-rw-r--r-- | newlib/libm/machine/i386/f_lrint.c | 5 | ||||
-rw-r--r-- | newlib/libm/machine/i386/f_rint.c | 5 |
3 files changed, 3 insertions, 12 deletions
diff --git a/newlib/libm/machine/i386/f_llrint.c b/newlib/libm/machine/i386/f_llrint.c index 10285ebd0..6cc81ea1f 100644 --- a/newlib/libm/machine/i386/f_llrint.c +++ b/newlib/libm/machine/i386/f_llrint.c @@ -22,15 +22,12 @@ INDEX INDEX llrintl -ANSI_SYNOPSIS +SYNOPSIS #include <math.h> long long int llrint(double x); long long int llrintf(float x); long long int llrintl(long double x); -TRAD_SYNOPSIS - ANSI-only. - DESCRIPTION The <<llrint>>, <<llrintf>> and <<llrintl>> functions round <[x]> to the nearest integer value, according to the current rounding direction. If the rounded value is outside the diff --git a/newlib/libm/machine/i386/f_lrint.c b/newlib/libm/machine/i386/f_lrint.c index b8cdabb5d..62b2c41ed 100644 --- a/newlib/libm/machine/i386/f_lrint.c +++ b/newlib/libm/machine/i386/f_lrint.c @@ -21,15 +21,12 @@ INDEX INDEX lrintl -ANSI_SYNOPSIS +SYNOPSIS #include <math.h> long int lrint(double x); long int lrintf(float x); long int lrintl(long double x); -TRAD_SYNOPSIS - ANSI-only. - DESCRIPTION The <<lrint>>, <<lrintf>> and <<lrintl>> functions round <[x]> to the nearest integer value, according to the current rounding direction. If the rounded value is outside the diff --git a/newlib/libm/machine/i386/f_rint.c b/newlib/libm/machine/i386/f_rint.c index e335d463c..e72316f22 100644 --- a/newlib/libm/machine/i386/f_rint.c +++ b/newlib/libm/machine/i386/f_rint.c @@ -21,15 +21,12 @@ INDEX INDEX rintl -ANSI_SYNOPSIS +SYNOPSIS #include <math.h> double rint(double x); float rintf(float x); long double rintl(long double x); -TRAD_SYNOPSIS - ANSI-only. - DESCRIPTION The <<rint>>, <<rintf>> and <<rintl>> functions round <[x]> to an integer value in floating-point format, using the current rounding direction. They may |