diff options
author | das <das@FreeBSD.org> | 2005-04-08 00:52:27 +0000 |
---|---|---|
committer | das <das@FreeBSD.org> | 2005-04-08 00:52:27 +0000 |
commit | 4df744a4717c111c1ef2d75a7215e2a785dfc73c (patch) | |
tree | 124df50360259a8b228d6e40b194b26bf5f4ea97 /lib/msun | |
parent | 9977034544c280b2c4a724ab4438499d91b12086 (diff) | |
download | FreeBSD-src-4df744a4717c111c1ef2d75a7215e2a785dfc73c.zip FreeBSD-src-4df744a4717c111c1ef2d75a7215e2a785dfc73c.tar.gz |
These files should include s_lround.c instead of s_lrint.c.
This only matters for efficiency, not for correctness.
Diffstat (limited to 'lib/msun')
-rw-r--r-- | lib/msun/src/s_llround.c | 2 | ||||
-rw-r--r-- | lib/msun/src/s_llroundf.c | 2 | ||||
-rw-r--r-- | lib/msun/src/s_lroundf.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lib/msun/src/s_llround.c b/lib/msun/src/s_llround.c index f907c05..827dfc1 100644 --- a/lib/msun/src/s_llround.c +++ b/lib/msun/src/s_llround.c @@ -8,4 +8,4 @@ __FBSDID("$FreeBSD$"); #define DTYPE_MAX LLONG_MAX #define fn llround -#include "s_lrint.c" +#include "s_lround.c" diff --git a/lib/msun/src/s_llroundf.c b/lib/msun/src/s_llroundf.c index 78a8feb..c037a18 100644 --- a/lib/msun/src/s_llroundf.c +++ b/lib/msun/src/s_llroundf.c @@ -8,4 +8,4 @@ __FBSDID("$FreeBSD$"); #define DTYPE_MAX LLONG_MAX #define fn llroundf -#include "s_lrint.c" +#include "s_lround.c" diff --git a/lib/msun/src/s_lroundf.c b/lib/msun/src/s_lroundf.c index 6d1d2b3..e24fe7f 100644 --- a/lib/msun/src/s_lroundf.c +++ b/lib/msun/src/s_lroundf.c @@ -8,4 +8,4 @@ __FBSDID("$FreeBSD$"); #define DTYPE_MAX LONG_MAX #define fn lroundf -#include "s_lrint.c" +#include "s_lround.c" |