summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2003-05-09insque and remque are VAX instructions, no need for C functions; From 4.4BSDTodd C. Miller
2003-05-09Include string.h for memset() proto; noticed by lebel@Todd C. Miller
2003-05-09Oops, forgot to add remque.c hereTodd C. Miller
2003-05-08crank major number to correspond to libc major changeTodd C. Miller
2003-05-08Major number crank due to setr[ug]id() moving into libcompat.Todd C. Miller
2003-05-08Add sha2 routines based on code by Aaron D. Gifford with minorTodd C. Miller
massaging and a man page by me. I used the phk-derived stuff for sha2hl.c instead of Aaron's for consistency with our other hash routines.
2003-05-08Clear the digest local var w/ memset() in the End function.Todd C. Miller
2003-05-08Move setrgid(3) and setruid(3) from libc -> libcompat.Todd C. Miller
Programs should not be using these...
2003-05-08move insque(3) and remque(3) from libcompat -> libc; they are now POSIXTodd C. Miller
2003-05-08move lsearch(3) and insque(3) from libcompat -> libc; they are now POSIXTodd C. Miller
2003-05-08{e,f,g}cvt() are no longer missing.Todd C. Miller
2003-05-08ERROR -> ERRORS in .Sh, as per mdoc template.Jason McIntyre
2003-05-08RETURN VALUE -> RETURN VALUES in .Sh, as per mdoc template.Jason McIntyre
also new sentence, new line.
2003-05-07typos;Jason McIntyre
2003-05-06updated URL from Leandro Costa;Jason McIntyre
ok millert@
2003-05-06updated URL for USB specification from Leandro CostaJason McIntyre
new sentence, new line .Pa for URL is clearer
2003-05-05Add support for command line args in rshprog, e.g. "ssh -C".Todd C. Miller
2003-05-05add properties of single precision IEE754Jason Wright
2003-05-03typo in STANDARDS (this man page is getnameinfo, not getaddrinfo);Jason McIntyre
from wiz@netbsd
2003-05-03typos;Jason McIntyre
2003-05-03typos;Jason McIntyre
ok millert@
2003-05-03- make it -Wall cleanAnil Madhavapeddy
- add SNDCTL_DSP_SETDUPLEX emulation (netbsd) - SNDCTL_DSP_POST is a noop to prevent some apps blocking (netbsd) - some man pages fixes (from me and netbsd) - add some more missing #defines for SOUND_MIXER_* (netbsd)
2003-05-03these files all had >9 arguments to .Nd, causing the name description to beJason McIntyre
truncated. i wrapped them in double quotes to preserve the line. grep inspired by an -mdoc lesson from millert@
2003-05-02Add Doug Gwyn's portable alloca() for platforms w/o an assemblerTodd C. Miller
version. Normally, gcc provides its own alloca() (unless -fno-builtin is specified). The C version is decidedly suboptimal--we really need proper assembler versions but this will work as a stop-gap measure.
2003-05-01don't cast pointer to integer, use intptr_t stuff off inttypes.h insteadPeter Valchev
ok millert
2003-05-01Enable compiler warning options but NOT -WerrorMarco S Hyman
2003-05-01is -Wall clean by making rcsid constAnil Madhavapeddy
2003-05-01-Wall cleanup, make rcsid variables constAnil Madhavapeddy
millert@ ok
2003-05-01add missing enumeration case to select to kill gcc warningAnil Madhavapeddy
millert@ ok
2003-05-01typos;Jason McIntyre
2003-05-01typos;Jason McIntyre
ok itojun@
2003-05-01typos;Jason McIntyre
ok jakob@
2003-04-30fix for pr# 3179 and 3238. Patch verified by author of 3179.Marco S Hyman
2003-04-30a extended -> an extended;Jason McIntyre
2003-04-30typos;Jason McIntyre
2003-04-30removed unused .Bd macro;Jason McIntyre
ok jason@
2003-04-29remove printf from static dlctl and dlerror stubs. Return -1 ifMarco S Hyman
dlctl called from a static prog. dlerror will display the proper error in if also called. -1 return suggested by drahn@ general ok from several others
2003-04-28Change mquery() function call signature to be the same a mmap(). ItDale Rahn
needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built, booted, and 'make includes' before building ld.so with this change.
2003-04-28fix skeygetnext()Todd C. Miller
2003-04-26string cleaning; ok teduTheo de Raadt
2003-04-26managment -> management;Jason McIntyre
ok mickey@
2003-04-25Remove note about POLLMSG. not used and not provided. ok millert@Ted Unangst
2003-04-25Make function declaration and man page match prototype. Closes PR 3236Todd C. Miller
2003-04-25backout mquery change, something broke when not combined with a different diff.Dale Rahn
2003-04-25Document hw.sensorsAlexander Yurchenko
2003-04-25always widen the imputed netmask if it is narrower than the specified octets.Henning Brauer
fixes a strange behaviour where inet_net_pton would always return 4 (bits) for multicast addresses no matter how many octets were specified. negotiated with Paul Vixie, original author of this function. ok millert@
2003-04-25Document changes to mquery(2) function signature change, now the same as mmap(2)Dale Rahn
2003-04-25change mquery() function call signature to be the same a mmap(). ItDale Rahn
needs the prot/flags info and passing the addresses via arg/return allows it to be traced via ktrace better than an in/out paramter. This adds a new mquery syscall and renames the old one to omquery. New kernel _MUST_ be built and installed before building ld.so with this change. ok millert@ tedu@
2003-04-22Indent delay slot insnsJason Wright
2003-04-22char * in prototypes should be const; Kamo HiroyasuTodd C. Miller