summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2000-07-25Store the whole 64-bit pointer...mycroft
2000-07-25Use cpp comment style.mycroft
2000-07-25${RPCGEN}, not hard-coded rpcgencgd
2000-07-25typo. s/Fa getaddrinfo/Fn getaddrinfo/. sync with kame.itojun
2000-07-25move pitfall example to downwards. wording fixes. sync with kame.itojun
2000-07-25Make __dtoul() actually DTRT. The calling convention was totally wrong, andmycroft
the `big' value should be 2^63, not 2^31. Also, nuke __fixunsdfsi(), since this is never output by the sparc64 compiler.
2000-07-25give pitfall examples.itojun
in response to couple of PRs including 10666. sync with kame.
2000-07-24Offset the %i2 stack slot from %sp, not %fp. Otherwise we may modify themycroft
caller's registers!
2000-07-24There's no good reason not to assume a 64-bit stack here.mycroft
2000-07-24correct malloc() size computation mistake. bug from bsdi, founditojun
by kjc. sync with kame.
2000-07-24".di Df" -> ".di\n.Df", to fix creation of paper.pshubertf
Noted in PR 10661 by Patrick Welche <prlw1@cam.ac.uk>
2000-07-24Don't bother saving %f16-%f31, since we don't use them.mycroft
2000-07-24_errno -> __errnomycroft
2000-07-23Just use a store/load pair to get the pattern into the FP reg. This eliminatesmycroft
a bunch of cruft and avoids using a v9a instruction. In addition, eliminate 8 of the fmovda's, which we are not using the result of anyway. Net result is that this should be faster in all cases.
2000-07-23Fix stack BIAS issues.eeh
2000-07-22Ignore (to devnull) errors from ls when no libraries are installed.erh
2000-07-21Update some more assembly code for PIC issues.eeh
2000-07-20Add a description of strtok_r(3), and rip out the obsoleteness claim.kleink
2000-07-20do not rely upon algorithm ordering in pfkey spec. sync with kameitojun
2000-07-18Fix PIC bugs.eeh
2000-07-18Handle dynamic binaries too.eeh
2000-07-17fix a bug in the NOIEEE (aka VAX) case.matt
2000-07-17bump libssl majormrg
2000-07-17Handle krb5_init_context() failure, rather than dumping core.thorpej
2000-07-17bump libcrypto minormrg
2000-07-16v*scanf() are hardly 'new to this release' when they havejdolecek
been around since 386BSD-0.1 import; they have been present in 4.4BSD-Lite at least, can't currently check if even in 4.3BSD put note aboud eventual removing of compatibility formats to NOTES, it's hardly a bug description
2000-07-16update for openssl 0.9.5amrg
2000-07-16correct delint mistake (missing "&").itojun
may fix recent rpc/nfs-related PRs, including 10579 and 10601.
2000-07-16revert part of previous; u_long -> uintptr_t now that uintptr_t is u_long.christos
2000-07-16de-lint. Most important problem was the cast from pointer to uintptr_t tochristos
u_int64_t; changed the uintptr_t to u_long.
2000-07-15Revert previous change -- turned out I'd got my build environment in a twist.bjh21
2000-07-15Add fixunssfsi and fixunsdfsi. These are provided by libgcc2.c in GCC 2.95,bjh21
but not in EGCS. This version of fixunssfsi is almost exactly the arm32 version. fixunsdfsi is mostly based on fixdfsi, but with simplifications for 64-bit integers. Only minimal testing has been applied so far.
2000-07-14Well, duh! Use indexed addressing since that's why it's there. That waymatt
the code is PIC. (mmm. linker warning's about non-PIC code).
2000-07-14Use rpcvers_t, not long, for some variables holding version numbers. Theyfvdl
were sometimes passed by reference, creating problems on 64bit be systems.
2000-07-14Use explicit int32 get/put macros. Needed for 64bit big-endian systems.fvdl
2000-07-14KNF.kleink
2000-07-14Correct ctype(3) usage, just in case....itohy
2000-07-14Clean up & prepare for ELF. Don't define isnan since it's in libc. Add amatt
powf (really a wrapper for pow).
2000-07-11Xr passwd.confad
2000-07-11PCVT hack is gone.ad
2000-07-11Correct ctype(3) usage.itohy
Passing "char" value is wrong. Use "unsigned char" instead.
2000-07-10* Use standard interval notation for struct tm members.kleink
* Document tm_isdst as DST flag, not summer time.
2000-07-10- More fixes.ad
- Document the built-in defaults.
2000-07-10`.Fn foo' -> `.Fn foo "void"' in SYNOPSIS.ad
2000-07-10Remove PCVT hack.ad
2000-07-10document sysctl variable "net.inet.icmp.errppslimit".itojun
2000-07-10Add a name description as well.kleink
2000-07-09add desription for net.inet6.icmp6.{errppslimit,nd6_maxnudhint}.itojun
2000-07-09reject empty scopeid/numeric portname explicitly. sync with kame.itojun
2000-07-09use strtoul() to check for all-digit string, not isdigit(). sync with kame.itojun