summaryrefslogtreecommitdiffstats
path: root/lib/msun
Commit message (Collapse)AuthorAgeFilesLines
* Remove duplicate declaration.markm2002-10-231-1/+0
|
* Fixed a last-minute editing error in previous commit. nfs and/or cvsbde2002-10-011-0/+0
| | | | | replaced a 14-byte change in the middle of the file with 14 NULs at EOF despite or because of aborting the initial commit to pick up the change.
* Merged all interesting difference between the old math.h and the currentbde2002-10-011-0/+0
| | | | | | | | | | | | | one into the latter and removed the former. This works around the bug that some broken Makefiles add -I.../src/include to CFLAGS, resulting in the old math.h being preferred and differences between the headers possibly being fatal. The merge mainly involves declaring some functions as __pure2 although they are not yet all strictly free of side effects. PR: 43544
* Revert previous commit to unbreak world until we figure out thearchie2002-09-201-5/+2
| | | | right way to do it.
* Fix a problem with the definition of HUGE_VAL causing the gcc warningarchie2002-09-191-2/+5
| | | | | | "cast increases required alignment of target type" on some platforms. Reviewed by: bde
* e_pow.c:bde2002-06-172-2/+2
| | | | | | | | | | | | | | | | Fixed pow(x, y) when x is very close to -1.0 and y is a very large odd integer. E.g., pow(-1.0 - pow(2.0, -52.0), 1.0 + pow(2.0, 52.0)) was 0.0 instead of being very close to -exp(1.0). PR: 39236 Submitted by: Stephen L Moshier <steve@moshier.net> e_powf.c: Apply the same patch although it is just cosmetic because odd integers large enough to cause the problem are too large to be precisely represented as floats. MFC after: 1 week
* Fix formatting, this is hard to explain, so I'll show one example.alfred2002-05-28129-141/+282
| | | | | | | | | | - float ynf(int n, float x) /* wrapper ynf */ +float +ynf(int n, float x) /* wrapper ynf */ This is because the __STDC__ stuff was indented. Reviewed by: md5
* Assume __STDC__, remove non-__STDC__ code.alfred2002-05-28141-1502/+5
| | | | Reviewed by: md5
* Assume __STDC__, remove non-__STDC__ code.alfred2002-05-2820-191/+38
| | | | Submitted by: keramida
* Spread the word of PowerPC.benno2002-05-211-1/+2
|
* Added new bsd.incs.mk which handles installing of header filesru2002-05-121-5/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | via INCS. Implemented INCSLINKS (equivalent to SYMLINKS) to handle symlinking include files. Allow for multiple groups of include files to be installed, with the powerful INCSGROUPS knob. Documentation to follow. Added standard `includes' and `incsinstall' targets, use them in Makefile.inc1. Headers from the following makefiles were not installed before (during `includes' in Makefile.inc1): kerberos5/lib/libtelnet/Makefile lib/libbz2/Makefile lib/libdevinfo/Makefile lib/libform/Makefile lib/libisc/Makefile lib/libmenu/Makefile lib/libmilter/Makefile lib/libpanel/Makefile Replaced all `beforeinstall' targets for installing includes with the INCS stuff. Renamed INCDIR to INCSDIR, for consistency with FILES and SCRIPTS, and for compatibility with NetBSD. Similarly for INCOWN, INCGRP, and INCMODE. Consistently use INCLUDEDIR instead of /usr/include. gnu/lib/libstdc++/Makefile and gnu/lib/libsupc++/Makefile changes were only lightly tested due to the missing contrib/libstdc++-v3. I fully tested the pre-WIP_GCC31 version of this patch with the contrib/libstdc++.295 stuff. These changes have been tested on i386 with the -DNO_WERROR "make world" and "make release".
* Resurrect Lite1's gamma() as C99's tgamma(). Minimal changes.bde2002-03-266-24/+42
|
* Fixed some bugs in the description of plain gamma() (and gammaf()).bde2002-03-261-19/+19
| | | | | Give a more detailed and correct history of when gamma() was actually the gamma function.
* Fixed some minor style bugs.bde2002-03-261-2/+2
|
* Remove __P() usage.obrien2002-03-215-189/+190
|
* Fix SCM ID's.obrien2002-03-213-9/+7
|
* We need an frexp() function.obrien2002-03-011-1/+1
|
* Add ifdef sparc64.jake2002-01-021-1/+1
|
* Fix style bugs (mostly remove 'extern' from function prototypes)phantom2001-12-132-202/+206
| | | | Inspired by: conversation with bde
* * remove reference to m68k-dependent sourcesphantom2001-12-131-7/+1
| | | | * fix comment
* Grammar nit.ru2001-11-211-1/+1
|
* mdoc(7) police: fixed bugs from rev. 1.15.ru2001-11-201-14/+14
|
* gamma(x) actually returns \log(|\Gamma(x)|), so correct the mandwmalone2001-11-051-16/+28
| | | | | | | | | | page and add an historical note explaining this. This patch is based on Stephen's. We still need someone to implement tgamma. PR: 28972, 31764 Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu>
* Match parenthesis and don't give names to return values.dd2001-10-151-3/+2
| | | | PR: 31214
* Fixed missing quoting of >= (in ceil.3) and <= (in floor.3) by reverting tobde2001-10-132-7/+7
| | | | | | | describing these operators in English. This completes the fix in rev.1.3 (rev.1.2 got this wrong by describing wrong operators in English). Fixed bitrot and improved English in the DESCRIPTION section.
* Fixed missing quoting of [-1, +1].bde2001-10-132-2/+4
| | | | Submitted by: phantom
* Use ".Lb libm" where it will have an effect (not just in the zombie manbde2001-10-1326-0/+52
| | | | | | pages in libm). Submitted by: phantom
* Port to ia64. Actually, just do like the alpha.dfr2001-10-081-1/+1
|
* Don't install manpage links for the nonexistent functions exp2(),bde2001-10-031-2/+2
| | | | exp2f(), log2() and log2f().
* Removed .Nm's for the nonexistent functions exp2() and exp2f().bde2001-10-031-2/+0
|
* mdoc(7) police: Use the new .In macro for #include statements.ru2001-10-0126-26/+26
|
* Add __FBSDID()s to libmdillon2001-09-303-0/+9
|
* mdoc(7) police: join split punctuation to macro calls.ru2001-08-101-1/+1
|
* Tiny markup fix: `to' isn't a variableyar2001-08-091-1/+2
|
* Remove whitespace at EOL.dd2001-07-1520-64/+64
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-109-9/+9
|
* Added skeleton <complex.h> (aligned with the POSIX.1-200x), mostlyru2001-06-133-19/+20
| | | | | | | | to fix the "-nostdinc WARNS=X" breakage caused by broken prototypes for cabs() and cabsl() in <math.h>. Reimplemented cabs() and cabsl() using new complex numbers types and moved prototypes from <math.h> to <complex.h>.
* mdoc(7) police: normalize .Nd.ru2001-04-181-1/+1
|
* MAN[1-9] -> MAN.ru2001-03-271-1/+1
|
* Don't use MANDEPEND and MANSRC.ru2001-03-261-2/+0
|
* .St -ansiC -> .St -isoCru2001-02-2615-15/+15
|
* mdoc(7) police: Change -filled displays (which just happenru2001-02-072-2/+2
| | | | | | to be the same as -ragged in the current implementation) to -ragged. With mdocNG, -filled displays produce the correct output, formatted and justified to both margins.
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-015-8/+9
|
* Prepare for mdoc(7)NG.ru2000-12-292-2/+1
|
* mdoc(7) police: use canonical form of .Dd macro.ru2000-12-111-1/+1
|
* mdoc(7) police: Er macro usage cleanup.ru2000-11-223-3/+3
|
* mdoc(7) police: Nm -> Fn where appropriate.ru2000-11-202-4/+4
|
* Fix #include orderbrian2000-10-151-1/+1
| | | | Spotted by: imura
* Removed bogus 'l' suffixes in FP register to register instructions.bde2000-06-066-8/+8
|
* MFS: Add a "magic" comment to help fixincludes realize it doesn't need toobrien2000-03-271-0/+2
| | | | | | modify this file when building GCC 2.96 [by hand or via the port]. Submitted by: Zack Weinberg <zack@wolery.cumb.org>
OpenPOWER on IntegriCloud