summaryrefslogtreecommitdiff
path: root/lib/libc
AgeCommit message (Collapse)Author
2003-06-01- section reorderJason McIntyre
- merge COMPATIBILITY - kill whitespace at EOL
2003-06-01- section reorderJason McIntyre
- kill unnecessary .Ns macros - add some man page section numbers to .Xr's
2003-05-30- whitespace at EOLJason McIntyre
- remove unnecessary macros - section reorder in getrpcent(3)
2003-05-30section reorder;Jason McIntyre
2003-05-30- section reorderJason McIntyre
- macro cleanup
2003-05-30section reorder;Jason McIntyre
2003-05-30- section reorderJason McIntyre
- whitespace at EOL
2003-05-30- correct macro usageJason McIntyre
- section reorder
2003-05-30- clean up macro abuseJason McIntyre
- section reorder - merge COMPATIBILITY
2003-05-30section reorder;Jason McIntyre
2003-05-30- section reorder in crypt(3)Jason McIntyre
- use .An/.Aq for authors
2003-05-30- section reorderJason McIntyre
- in sigvec(3) removed .Xr to itself, added section numbers to two other .Xr's
2003-05-29layout problems; jmc okTheo de Raadt
2003-05-24typoTodd C. Miller
2003-05-24Say POSIX-2001 instead of Single Unix v3. They are the same but we generallyTodd C. Miller
mention POSIX compliance, not Single Unix compliance.
2003-05-20this is all new code. copyright to downsj and myself who managed toTheo de Raadt
erradicate the old stuff.
2003-05-20Document ENXIO error condicion when the named file is a FIFO andTodd C. Miller
flags include O_NONBLOCK|O_WRONLY. Closes PR 3265.
2003-05-20consistent non-capitalization of words not beginning sentencesPaul Janzen
2003-05-19Make sure our return value is withing the range 20 - -20 (aka NZERO - -NZERO).Todd C. Miller
We could use an extra call to getpriority() instead but it's faster to just do the bounds check in userland.
2003-05-19Explicitly state that priority values outside the range -20 to 20 areTodd C. Miller
truncated to the appropriate limit.
2003-05-17Better English.Paul Janzen
2003-05-17Document behaviour when size = 1. ok millert@Paul Janzen
2003-05-16When positional arguments need more memory for storage (more than 8 args),Theo de Raadt
use mmap() instead of malloc(). this makes all the functionality in snprintf() and friends signal race safe. it also makes syslog_r() and the entire family of *warn*() and *err*() signal race safe, which was the real goal. ok pjazen millert
2003-05-16typo from deraadt@Jason McIntyre
2003-05-14Unbreak 64-bit archs...Thierry Deval
2003-05-14Pointer cleaning. ok ian@, tedu@, krw@Thierry Deval
2003-05-14fill ai_canonname field for numeric hostname, by the given hostname.Jun-ichiro itojun Hagino
folows new recommendation in RFC3493. markus ok
2003-05-14sync vis() behaviour when VIS_SAFE to man page: don't do anything if isgraph()Paul Janzen
is true, even if the character isn't 7-bit.
2003-05-14Delete reference to /usr/share/doc/papers/malloc.ascii.gz as we do notKenneth R Westerback
have it. We don't even have the directory /usr/share/doc/papers. ok millert@.
2003-05-12cpu -> CPUJason McIntyre
2003-05-12cpu -> CPUJason McIntyre
2003-05-12cpu -> CPUJason McIntyre
2003-05-12Ideas from NetBSD: document nmemb and include sradixsort in the NAME section.Paul Janzen
Also, stomp a comma splice.
2003-05-11Document \sPaul Janzen
2003-05-10Do not let userland access the swapon system call anymore (nothing uses itMiod Vallat
anyway). ok deraadt@ weingart@
2003-05-10costant -> constant;Jason McIntyre
from NetBSD (Onno van der Linden).
2003-05-10typos;Jason McIntyre
2003-05-10typos;Jason McIntyre
2003-05-09Pass ndigit+1 as size arg to strlcpy() since ndigit doesn't include the NULTodd C. Miller
2003-05-09assembler versions of insque and remque for m68k, also from 4.4BSDTodd C. Miller
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-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-07typos;Jason McIntyre