summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Tie libgpib into the build (unless NO_GPIB)phk2005-02-061-1/+6
|
* Add libgpib containing the glue to get ibfoo() calls into the kernel.phk2005-02-063-0/+689
|
* Update my email address.das2005-02-0610-10/+10
|
* When we have converted an ASCII message to binary, set its version inglebius2005-02-041-0/+1
| | | | | | the header. Otherwise we will send a message with zero version. MFC after: 3 days
* Fix a small scripting snafu in the previous revision.das2005-02-041-2/+2
|
* Remove another vestige of support for a non-IEEE libm.das2005-02-041-2/+0
|
* Reduce diffs against vendor source (Sun fdlibm 5.3).das2005-02-0428-428/+476
|
* Move machine-dependent crud to its own makefile.das2005-02-045-22/+32
|
* Remove wrappers and other cruft intended to support SVID, mistakes indas2005-02-0475-3283/+81
| | | | | | | C90, and other arcana. Most of these features were never fully supported or enabled by default. Ok: bde, stefanf
* Cleanup prototypes and remove dead codephantom2005-02-012-72/+21
| | | | MFC After: 3 days
* In addition to the PAM environment, export a handful of useful PAM items.des2005-02-012-8/+62
| | | | Suggested by: Ed Maste <emaste@phaedrus.sandvine.ca>
* Add openpam_free_envlist(3).des2005-02-011-0/+2
|
* Typo.ru2005-01-281-1/+1
|
* Properly terminate sentence.ru2005-01-281-2/+2
|
* use strdup().ume2005-01-281-2/+1
| | | | | Obtained from: KAME MFC after: 1 week
* Clean up makefile.ru2005-01-281-7/+2
| | | | | | | | - Remove all:. It's redundant, and ${LIB} in it is just a bug. - Remove .ORDER:. *.mgc files can safely be built in parallel. - Remove PITA. The mkmagic tool is smart to put the binary file into the current directory (${.OBJDIR}) even if the source file lives somewhere else, which is just what we need.
* make _getipnodebyname_multi() static.ume2005-01-271-1/+1
|
* implement AI_NUMERICSERV (as defined in RFC3493).ume2005-01-271-10/+13
| | | | | Obtained from: KAME MFC after: 1 week
* fill ai_canonname field for numeric hostname, by the given hostname.ume2005-01-271-7/+25
| | | | | | | follow new recommendation in RFC3493. Obtained from: KAME MFC after: 1 week
* query A RR before AAAA RR.ume2005-01-271-10/+10
| | | | MFC after: 1 week
* - Move the functions presently described in in ieee(3) to their owndas2005-01-2710-587/+894
| | | | | | | | manpages. They are not very related, so separating them makes it easier to add meaningful cross-references and extend some of the descriptions. - Move the part of math(3) that discusses IEEE 754 to the ieee(3) manpage.
* Don't compile the gdtoa package's strtoIg.c into libc.das2005-01-271-1/+1
| | | | I never got around to making use of it.
* This should (finally) fix the 64-bit build. <sigh>kientzle2005-01-261-1/+1
|
* Fix some signed/unsigned mismatches.kientzle2005-01-251-12/+14
| | | | | Reported by: tinderbox Pointy hat: me
* Basic support for ZIP archives.kientzle2005-01-256-8/+566
| | | | | | | Only supports "deflate" and "none" compression for now. Also, add a few clarifications to the archive_read.3 manpage as requested by William Dean DeVries.
* EISCONN may be returned by sendto() if an attempt is made to specify thekeramida2005-01-241-0/+2
| | | | | | | | destination address to a datagram socket that is already connected. Submitted by: Rudolf Cejka <cejkar@fit.vutbr.cz> PR: docs/76399 MFC after: 1 week
* spell "file system" correctlycharnier2005-01-241-6/+6
| | | | Approved by: ru
* spell "file system" correctlycharnier2005-01-242-4/+4
| | | | Approved by: ru
* Markup and grammar fixes.ru2005-01-243-23/+31
|
* When "no_ccache" is set as an argument to the pam_krb5 module, don'trwatson2005-01-241-0/+4
| | | | | | | | | copy the acquired TGT from the in-memory cache to the on-disk cache at login. This was documented but un-implemented behavior. MFC after: 1 week PR: bin/64464 Reported and tested by: Eric van Gyzen <vangyzen at stat dot duke dot edu>
* Update man pages to be in line with guidelines for IPv6 in FreeBSD.gnn2005-01-243-653/+17
| | | | | | | | | FreeBSD currently implements the most up to date IPv6 APIs for option and route header parsing. This checkin marks the older APIs as deprecated and points the reader to the newer pages. Reviewed by: Jun-ichiro Itojun Approved by: rwatson (mentor)
* Fix a dangling MKLINK from my last commit.gnn2005-01-241-1/+1
| | | | Approved by: rwatson (mentor)
* Define FE_TONEAREST, FE_TOWARDZERO, FE_UPWARD, FE_DOWNWARD and _ROUND_MASK tocognet2005-01-241-0/+7
| | | | unbreak the build for arm.
* Update comment to reflect the code change in the previous revision.das2005-01-232-2/+2
| | | | Noticed by: ceri
* Many changes, including the following major ones:das2005-01-231-113/+269
| | | | | | | | | | - Rearrange the list of functions into categories. - Remove the ulps column. It was appropriate for only some of the functions in the list, and correct for even fewer of them. - Add some new paragraphs, and remove some old ones about NaNs that may do more harm than good. - Document precisions other than double-precision.
* - Document ldexpf().das2005-01-231-17/+12
| | | | | | - Although ldexp() is in libc for backwards compatibility, ldexpf() is in its proper place in libm. Document both as being in libm. - The ldexp() and ldexpf() functions conform to C99.
* - Document frexpf().das2005-01-231-9/+13
| | | | | | | - Neither frexp() nor frexpf() set errno. - Although frexp() is in libc for backwards compatibility, frexpf() is in its proper place in libm. Document both as being in libm. - The frexp() and frexpf() functions conform to C99.
* Submitted by: George V. Neville-Neil (gnn at freebsd dot org)gnn2005-01-237-0/+2099
| | | | | | | | | | | | | | | | Reviewed by: Kame Project (including Itojun-san, Jinmei-san and Suzuki-san) Approved by: Robert Watson (robert at freebsd dot org) Obtained from: Kame Project and OpenBSD Replace manual pages that may have violated the IETF's Copyright. All come from the Kame tree. Several were from OpenBSD except for ip6.4, and the inet6* pages which were rewritten by me. All of the text is new and drawn from reading the code and documentation.
* The final argument to verify_krb_v5_tgt() is the debug flag, not therwatson2005-01-231-2/+3
| | | | | | | | | ticket forwardable flag, so key generation of debugging output to "debug" rather than "forwardable". Update copyright. MFC after: 3 days
* If x == y, return y, not x. C99 (though not IEEE 754) requires thatdas2005-01-232-2/+2
| | | | nextafter(+0.0, -0.0) returns -0.0 and nextafter(-0.0, +0.0) returns +0.0.
* Submitted by: George V. Neville-Neil (gnn at freebsd dot org)gnn2005-01-237-2357/+2
| | | | | | | | | Approved by: Robert Watson (robert at freebsd dot org) Remove files in preparation for replacement with totally new versions of the manual pages. Update the Makefile to handle the new file to be added.
* Minor white space tweak.rwatson2005-01-231-1/+1
| | | | MFC after: 3 days
* Set the format code and name correctly for:kientzle2005-01-232-2/+14
| | | | | * ISO9660 CDROM images * ISO9660 images with Rockridge extensions
* Especially mention that setting errno to EINVAL in "no conversion" caseache2005-01-222-4/+8
| | | | | | is not portable. Asked by: joerg
* Add fma() and fmaf(), which implement a fused multiply-add operation.das2005-01-228-3/+412
|
* Replace the ldexp() implementation in libc with a renamed copy of thedas2005-01-226-739/+123
| | | | | | | | | | | | | | | | scalbn() implementation from libm. (The two functions are defined to be identical, but ldexp() lives in libc for backwards compatibility.) The old ldexp() implementation... - was more complicated than this one - set errno instead of raising FP exceptions - got some corner cases wrong (e.g. ldexp(1.0, 2000) in round-to-zero mode) The new implementation lives in libc/gen instead of libc/$MACHINE_ARCH/gen, since we don't need N copies of a machine-independent file. The amd64 and i386 platforms retain their fast and correct MD implementations and override this one.
* Fixed xrefs.ru2005-01-211-1/+1
|
* Fixed punctuation in xrefs.ru2005-01-212-3/+3
|
* Whitespace/style tweaking of prev. commit.ache2005-01-216-24/+18
| | | | Noted by: bde
* Reflect the reality; only crypt(3) uses /etc/auth.confru2005-01-211-1/+1
| | | | for the time being.
OpenPOWER on IntegriCloud