diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-18 08:48:15 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-18 08:48:15 +0000 |
commit | 4db5f2c0a1e1a310c51bf2612a9e08dc22262b1e (patch) | |
tree | 2b3a2e17ade8acbba52955b8f8ecb1c919d744a5 /libm/double/Makefile | |
parent | e13e3a7da6efc8c81b95883e01aecd0e41142f7d (diff) |
I went nuts and wrote a generic rint implementation. I think it is
correct per the man page and a little testing seems to show it works.
-Erik
Diffstat (limited to 'libm/double/Makefile')
-rw-r--r-- | libm/double/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libm/double/Makefile b/libm/double/Makefile index a53b44d2e..9eab8ef81 100644 --- a/libm/double/Makefile +++ b/libm/double/Makefile @@ -35,7 +35,7 @@ CSRC=acosh.c airy.c asin.c asinh.c atan.c atanh.c bdtr.c beta.c \ polevl.c polmisc.c polylog.c polyn.c pow.c powi.c psi.c rgamma.c round.c \ shichi.c sici.c sin.c sindg.c sinh.c spence.c stdtr.c struve.c \ tan.c tandg.c tanh.c unity.c yn.c zeta.c zetac.c \ - sqrt.c floor.c setprec.c mtherr.c noncephes.c + sqrt.c floor.c setprec.c mtherr.c noncephes.c rint.c COBJS=$(patsubst %.c,%.o, $(CSRC)) |