summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
1996-04-29Initial libc ELF support. Currently only elf_hash() is implemented.etheisen
1996-04-25NIS+ in YP compatibility mode does not support a working yp_order(). amdTheo de Raadt
wants one so it can flush it's cache intelligently. Here's a working compromise... solution worked out by matthieu@laas.fr and I.
1996-04-24yp_prot.h lies -> use yp.h (from yp.x) instead, change lots of structureTheo de Raadt
accesses to match. change xdr_domainname() and some other functions to take "char **" instead of "char *", as rpcgen intended -- helps programs linking against rpcgen output of yp.x. yp_all() should not free it's return value. split xdryp.c and yplib.c into ~20 files so binaries like "csh" need not link in functions like yp_maplist(). NIS+'s YP emulation code lacks YPPROC_ORDER... attempt to deal nicely.
1996-04-23do not assume "." exists -- it might have gotten unlink()'ed -- weTheo de Raadt
don't want closedir() to SIGSEGV. as well, sample code in man pages should be very robust and not hint that closedir() might survive being passed opendir()'s failure code.
1996-04-21sync to netbsd 960418Theo de Raadt
1996-03-30Substantially improve random number generation by using the largest primeThorsten Lockert
that fits inside 32 bits as the denominator; take care not to overflow. Regenerate initial seed after replacing the generator
1996-03-25Add support for building lint(1) libraryThorsten Lockert
1996-03-25Make a proper lvalue in INCThorsten Lockert
1996-03-25Add const qualifier to match prototypeThorsten Lockert
1996-03-25Protect use of long long with /* LONGLONG */Thorsten Lockert
1996-03-25Use __asm, not asmThorsten Lockert
1996-03-25Prototype __syscall() correctlyThorsten Lockert
1996-03-25Cannot do operations on a void pointerThorsten Lockert
1996-03-25Update prototypes to match declarationsThorsten Lockert
Remove unused variables Install all man-page links
1996-03-25Add prototypes for internal functionsThorsten Lockert
Change inline to __inline
1996-03-25Protect internal mcount symbol from lint(1)Thorsten Lockert
Use __asm, not asm
1996-03-25Pull in prototypesThorsten Lockert
Do the right thing in presense of __STDC__
1996-03-25Pull in more prototypesThorsten Lockert
1996-03-25Pull prototypes into scopeThorsten Lockert
Remove graticious casts
1996-03-25Prototype internal functionsThorsten Lockert
Do the right thing in presense of __STDC__
1996-03-25Cast negative args to their unsigned typeThorsten Lockert
1996-03-25Use correct prototype in the presense of __STDC__Thorsten Lockert
1996-03-25Add prototypes for internal functionsThorsten Lockert
1996-03-25Minor cleanupThorsten Lockert
1996-03-25Add prototypes for local functions, add const qualifiers where neededThorsten Lockert
1996-03-22sethostid() is documented and has historically returned int, not longThorsten Lockert
1996-03-19Fix RCS Id botch in last changeNiklas Hallqvist
1996-03-19Fix RCS Id botch in last changeNiklas Hallqvist
1996-03-19From NetBSD: merge of 960317Niklas Hallqvist
1996-03-09From NetBSD: 960217 mergeNiklas Hallqvist
1996-02-24bumbed to 12.4 for binddm
1996-02-24From NetBSD: Fix embarassing typoNiklas Hallqvist
1996-02-24From NetBSD: Fixed SEE ALSO section. Closes PR # 2049 (from Mike LongNiklas Hallqvist
<mike.long@analog.com>)
1996-02-24From NetBSD: Add explicit return typeNiklas Hallqvist
1996-02-19netbsd: bind 4.9.3dm
1996-01-29Add kernel PLL for system clockThorsten Lockert
Add ntp_adjtime() and ntp_gettime() system calls Mostly stolen from FreeBSD
1996-01-29new common tz codeTheo de Raadt
1996-01-29from netbsd; add S_IFWHTTheo de Raadt
1996-01-29need errno.h because err declerations have movedTheo de Raadt
1996-01-29realloc(ptr, 0) does not free; from seebs@taniemarie.solon.com;Theo de Raadt
netbsd pr#1806
1996-01-29typo; fix from norijuki soda; netbsd pr#1954Theo de Raadt
1996-01-29from netbsd; warnx called incorrectlyTheo de Raadt
1996-01-15from netbsd:Theo de Raadt
Document the EACCES errno value as returned by sendmsg(2), per Ted Mellon <mellon@fugue.com>, PR #1093.
1996-01-15from netbsd:Theo de Raadt
Don't read the network address as an alias when there isn't whitespace after the network address. Closes PR 1940.
1996-01-14Redid formatting with mandoc macros. Added an "ERRORS" section.Niklas Hallqvist
1996-01-12Completed incomplete edit and corrected historyNiklas Hallqvist
1996-01-11from netbsd; sync with tzcode96aTheo de Raadt
1996-01-10describe actual openbsd rfork() details. this should be converted to aTheo de Raadt
mandoc manpage by some brave individual (prettier because they fit more data on the same page). please?
1996-01-10original rfork(2) manpage from plan9. This will be modified to describeTheo de Raadt
the actual implimentation in OpenBSD. > From: "Rob Pike" <rob@plan9.att.com> > feel free to borrow the text of the plan 9 rfork page, with attribution.
1996-01-08from ragge; Changed to only include <machine/asm.h>, as the other portsTheo de Raadt