summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Revert $FreeBSD$ to $Id$peter1997-02-22638-719/+719
|
* Revert $FreeBSD$ to $Id$peter1997-02-224-4/+4
|
* Back out an easy $FreeBSD$peter1997-02-221-1/+1
|
* Split up the Bessel function wrapper files so that most wrapper functionsbde1997-02-2013-177/+315
| | | | are in their own file.
* Removed misplaced duplicate of comment about implementation details.bde1997-02-201-22/+0
|
* Compute (1 - x^2) as ((1 - x) * (1 + x)) instead of as (1 - x * x) tobde1997-02-202-11/+23
| | | | | | | | | | | | | | | avoid easily avoidable loss of precision when |x| is nearly 1. Extended (64-bit) precision only moves the meaning of "nearly" here. This probably could be done better by splitting up the range into |x| <= 0.5 and |x| > 0.5 like the C version. However, ucbtest does't report any errors in this version. Perhaps the C version should be used anyway. It's only 25% slower now on a P5, provided the C version of sqrt() isn't used, and the C version could be optimized better. Errors checked by: ucbtest
* Typogrammatical error 'with' -> 'when'.danny1997-02-201-1/+1
| | | | This could be put into 2.2.
* Add forgotten man page link fts_set.3 -> fts.3wosch1997-02-161-1/+1
|
* Select between the generic math functions and the i387-specific onesbde1997-02-1625-56/+110
| | | | | | | | | | | | | | | | | | | | | | | | | | at runtime. etc/make.conf: Nuked HAVE_FPU option. lib/msun/Makefile: Always build the i387 objects. Copy the i387 source files at build time so that the i387 objects have different names. This is simpler than renaming the files in the cvs repository or repeating half of bsd.lib.mk to add explicit rules. lib/msun/src/*.c: Renamed all functions that have an i387-specific version by adding `__generic_' to their names. lib/msun/src/get_hw_float.c: New file for getting machdep.hw_float from the kernel. sys/i386/include/asmacros.h: Abuse the ENTRY() macro to generate jump vectors and associated code. This works much like PIC PLT dynamic initialization. The PIC case is messy. The old i387 entry points are renamed. Renaming is easier here because the names are given by macro expansions.
* Use the C library version of log10() instead of the inaccurate formulabde1997-02-161-3/+1
| | | | | | | | | log10(x) = log10e * log(x). The formula would work if the RHS were evaluated in extended precision with an extended precision log(). This actually happened with the i387 log() because it returns excess precision. Found by: ucbtest
* Fixed the i87 version of exp(). It returned NaN for args +-Inf. It hadbde1997-02-161-0/+42
| | | | | | some small (one or two ULP) inaccuracies. Found by: ucbtest
* Put back .endif clobbered by the previous commit, breaking thejkh1997-02-151-0/+1
| | | | build.
* Reviewed by: Bruce Evans <bde@freebsd.org>danny1997-02-151-0/+6
| | | | | Guard against possible buffer overrun in filename passed. Another candidate for 2.2.
* Allow commonly-used "insecure" as a valid keyword in /etc/ttys.davidn1997-02-151-0/+2
| | | | | This prevents keywords after "insecure" occurs being errnoeously parsed as comments.
* Disabled the i387 version if log1p(). It just evaluates log(1 + x).bde1997-02-151-2/+4
| | | | | | | | | This defeats the point of log1p(). ucbtest reports errors of +-5e+15 ULPs. A correct version would use the i387 fyl2xp1 instruction for small x and maybe scale to small x. The C version does the scaling reasonably efficiently, and fyl2px1 is slow (at least on P5s), so not much is lost by always using the C version (only 25% for small x even with the broken i387 version; 50% for large x).
* Moved definitions of PIC macros from SYS.h to DEFS.h so that SYS.hbde1997-02-143-41/+21
| | | | | | | | doesn't need to be included in files that have nothing to do with syscalls. Added missing `.text' to START_ENTRY so that ENTRY() works when invoked in the data section.
* lite2 remame: vfc_index --> vfc_typenumadam1997-02-121-1/+1
|
* Obsolete fgetline() -> fgetln(); and chop off newline if necessary.davidn1997-02-101-4/+5
|
* Update to reflect new Lite2 mount.h and friends.mpp1997-02-101-50/+53
|
* Update to reflect new Lite2 mount.h.mpp1997-02-102-6/+16
|
* Move _PathLocale to data-only file, so setrunelocale() not pick upache1997-02-092-2/+2
| | | | | | whole setlocale.c module now. Should go into 2.2
* Fix PR2579: potential security hole in rcmd.cimp1997-02-091-2/+2
| | | | Submitted by: Julian Assange
* Do Andrey's homework :) before merging this into 2.2:joerg1997-02-082-1/+6
| | | | | . add idempotency #ifdef . avoid sloppy common-style external declaration.
* Include "setlocale.h" for _PathLocale like other parts already didache1997-02-071-3/+2
| | | | Should go in 2.2
* Activate libopiepst1997-02-071-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r22375,pst1997-02-071-0/+27
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Build libopie from contrib_opie module.pst1997-02-071-0/+27
|
* Config information for FreeBSDpst1997-02-071-0/+322
|
* Comment out PATH_LOCALE referenceache1997-02-062-2/+2
| | | | Should go into 2.2
* Use symbolic constants instead of hardcoded digitsache1997-02-064-32/+51
| | | | | | | | Add range check for setrunelocale since it can be called directly. Remove _startup_setlocale compatibility function Should go into 2.2
* Fix yet another setlocale() bug.pst1997-02-061-1/+1
| | | | Submitted by: Wojtek Pilorz <wpilorz@celebris.bdk.lublin.pl>
* Submitted by: John Birrelljulian1997-02-05127-558/+3037
| | | | uthreads update from the author.
* Add XXX comment describing potential memset non-portable issueache1997-02-051-0/+3
| | | | Nitpicked-by: joerg
* Update the comment why range checking is not neededache1997-02-051-1/+1
| | | | Should go in 2.2
* Update the comment why range checking not neededache1997-02-053-4/+4
| | | | | | | Fix setrunelocale fail if called directly without prior setlocale call Should go in 2.2
* Killed getenv of PATH_LOCALE per Andrey's suggestion. It was intendeddg1997-02-051-11/+2
| | | | | for debugging locale stuff, but was rarely if ever used...and of course just bit a big chunk out of our collective hind-ends.
* 1MB is 1048576 bytes, not 1038476 bytes. (I can see that the originalasami1997-02-051-1/+1
| | | | committer wasn't using the MicroSlop Natural keyboard though! :)
* Add yet one comment saying that range checking already doneache1997-02-031-0/+1
| | | | to stop people "fixing" it by snprintf
* Cruft cleanup to eliminate useless warningspst1997-02-021-3/+6
|
* Make this texinfo file info-aware.joerg1997-02-012-5/+69
| | | | | | | I notice info(1) has some problems moving back and forth through the resulting info file, but emacs doesn't, so i figure it's rather a problem with info(1) itself. To the least, this file installs now finally.
* Don't use hardcoded *roff font change requests.mpp1997-01-312-3/+5
|
* Don't use hardcoded *roff font change requests. Do itmpp1997-01-317-18/+56
| | | | via mdoc macros instead.
* Very minor mdoc cleanup.mpp1997-01-3119-36/+36
|
* Update to reflect current include files.mpp1997-01-301-3/+12
|
* Update to reflect current include files.mpp1997-01-305-32/+41
|
* Dont' mlink getgrent.3 to setgrfile.3, since there is nompp1997-01-301-1/+1
| | | | setgrfile() function.
* Update to reflect current include files.mpp1997-01-307-47/+172
|
* Update to reflect current include files.mpp1997-01-301-2/+2
|
* Correct "Chflags() will fail it:" to read "Chflags() will fail if:".jmacd1997-01-301-1/+1
|
* Fix free()ing block twice, remove unused function.davidn1997-01-301-15/+1
|
OpenPOWER on IntegriCloud