summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* - section reorderjmc2003-05-304-16/+15
| | | | | - in sigvec(3) removed .Xr to itself, added section numbers to two other .Xr's
* layout problems; jmc okderaadt2003-05-291-2/+3
|
* typomillert2003-05-241-1/+1
|
* Say POSIX-2001 instead of Single Unix v3. They are the same but we generallymillert2003-05-241-1/+1
| | | | mention POSIX compliance, not Single Unix compliance.
* this is all new code. copyright to downsj and myself who managed toderaadt2003-05-201-34/+22
| | | | erradicate the old stuff.
* Document ENXIO error condicion when the named file is a FIFO andmillert2003-05-201-1/+7
| | | | flags include O_NONBLOCK|O_WRONLY. Closes PR 3265.
* consistent non-capitalization of words not beginning sentencespjanzen2003-05-202-6/+6
|
* Make sure our return value is withing the range 20 - -20 (aka NZERO - -NZERO).millert2003-05-191-4/+5
| | | | | We could use an extra call to getpriority() instead but it's faster to just do the bounds check in userland.
* Explicitly state that priority values outside the range -20 to 20 aremillert2003-05-192-4/+6
| | | | truncated to the appropriate limit.
* Better English.pjanzen2003-05-171-3/+3
|
* Document behaviour when size = 1. ok millert@pjanzen2003-05-172-2/+16
|
* When positional arguments need more memory for storage (more than 8 args),deraadt2003-05-161-16/+30
| | | | | | | 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
* typo from deraadt@jmc2003-05-161-4/+4
|
* Unbreak 64-bit archs...tdeval2003-05-141-2/+2
|
* Pointer cleaning. ok ian@, tedu@, krw@tdeval2003-05-141-66/+67
|
* fill ai_canonname field for numeric hostname, by the given hostname.itojun2003-05-141-8/+26
| | | | folows new recommendation in RFC3493. markus ok
* sync vis() behaviour when VIS_SAFE to man page: don't do anything if isgraph()pjanzen2003-05-141-3/+4
| | | | is true, even if the character isn't 7-bit.
* Delete reference to /usr/share/doc/papers/malloc.ascii.gz as we do notkrw2003-05-141-2/+1
| | | | | | have it. We don't even have the directory /usr/share/doc/papers. ok millert@.
* cpu -> CPUjmc2003-05-124-10/+10
|
* Ideas from NetBSD: document nmemb and include sradixsort in the NAME section.pjanzen2003-05-121-5/+8
| | | | Also, stomp a comma splice.
* Document \spjanzen2003-05-111-1/+2
|
* Do not let userland access the swapon system call anymore (nothing uses itmiod2003-05-101-2/+2
| | | | | anyway). ok deraadt@ weingart@
* costant -> constant;jmc2003-05-101-2/+2
| | | | from NetBSD (Onno van der Linden).
* typos;jmc2003-05-1011-31/+32
|
* typos;jmc2003-05-103-6/+6
|
* Pass ndigit+1 as size arg to strlcpy() since ndigit doesn't include the NULmillert2003-05-091-3/+3
|
* assembler versions of insque and remque for m68k, also from 4.4BSDmillert2003-05-093-1/+117
|
* insque and remque are VAX instructions, no need for C functions; From 4.4BSDmillert2003-05-093-2/+106
|
* Include string.h for memset() proto; noticed by lebel@millert2003-05-094-4/+8
|
* Oops, forgot to add remque.c heremillert2003-05-091-1/+1
|
* Major number crank due to setr[ug]id() moving into libcompat.millert2003-05-081-2/+2
|
* Add sha2 routines based on code by Aaron D. Gifford with minormillert2003-05-084-6/+1309
| | | | | | 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.
* Clear the digest local var w/ memset() in the End function.millert2003-05-083-18/+21
|
* Move setrgid(3) and setruid(3) from libc -> libcompat.millert2003-05-084-182/+3
| | | | Programs should not be using these...
* move insque(3) and remque(3) from libcompat -> libc; they are now POSIXmillert2003-05-084-8/+209
|
* move lsearch(3) and insque(3) from libcompat -> libc; they are now POSIXmillert2003-05-083-7/+205
|
* typos;jmc2003-05-0711-49/+59
|
* updated URL from Leandro Costa;jmc2003-05-061-2/+3
| | | | ok millert@
* Add support for command line args in rshprog, e.g. "ssh -C".millert2003-05-052-11/+53
|
* typo in STANDARDS (this man page is getnameinfo, not getaddrinfo);jmc2003-05-031-2/+2
| | | | from wiz@netbsd
* typos;jmc2003-05-034-11/+11
|
* typos;jmc2003-05-035-22/+24
| | | | ok millert@
* these files all had >9 arguments to .Nd, causing the name description to bejmc2003-05-031-3/+2
| | | | | | truncated. i wrapped them in double quotes to preserve the line. grep inspired by an -mdoc lesson from millert@
* Add Doug Gwyn's portable alloca() for platforms w/o an assemblermillert2003-05-028-8/+147
| | | | | | | 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.
* -Wall cleanup, make rcsid variables constavsm2003-05-0131-61/+61
| | | | millert@ ok
* add missing enumeration case to select to kill gcc warningavsm2003-05-012-2/+8
| | | | millert@ ok
* typos;jmc2003-05-016-16/+15
|
* typos;jmc2003-05-012-19/+19
| | | | ok itojun@
* typos;jmc2003-05-011-4/+4
| | | | ok jakob@
* a extended -> an extended;jmc2003-04-301-2/+2
|