summaryrefslogtreecommitdiffstats
path: root/lib/libc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* typos from wiz@netbsd (including one from a PR from Quentin Garnier);jmc2003-09-181-10/+14
| | | | | | slight sync with NetBSD page; ok millert@
* update RFCs (from NetBSD);jmc2003-09-091-3/+13
| | | | | | inet_makeaddr() uses in_addr_t types, not unsigned long. ok itojun@
* update missing sysctls;jmc2003-09-091-647/+821
| | | | input and fixes from miod, markus, tedu, grange, jolan, nordin.
* o Use proper mdoc macros for function macros and definesmillert2003-09-081-70/+100
| | | | | | | | | o Update flags values based on POSIX-2001 o Remove inaccuracies o Document what we don't support in BUGS o More specific HISTORY info o Update SEE ALSO OK jmc@ and deraadt@
* typo; ianm@cit.uws.edu.auderaadt2003-09-081-2/+2
|
* Zap context correctly, from Juergen Buchmueller <pullmoll at stop1984 dot com>millert2003-09-081-5/+5
| | | | Same as sys/crypto/sha2.c revision 1.2
* typos from Brian Poole;jmc2003-09-072-6/+6
| | | | ok deraadt@
* standards compliant strxfrm. much simpler too. fixes sorting in glib2.tedu2003-09-061-16/+4
| | | | ok deraadt@ espie@ marcm@
* spacing;jmc2003-09-051-1/+2
|
* typo.tdeval2003-09-041-2/+2
| | | | ok jmc@
* put escapes in the right place;jmc2003-09-041-2/+2
| | | | | | (i.e. stuff I got wrong the first time, or missed) this includes some .Cd's with missing quotes and .Nm abuse in man4;
* escape punctuation;jmc2003-09-024-12/+12
| | | | ok deraadt@
* These files are not necessary anymore.miod2003-09-012-74/+0
|
* wording improvement from Michael Knudsen;jmc2003-08-281-2/+2
|
* tweak;jmc2003-08-281-10/+10
| | | | ok itojun@
* better formatting. from wiz@netbsditojun2003-08-281-4/+4
|
* use NI_NUMERICHOST for 2nd invocationitojun2003-08-281-2/+2
|
* add int error in CAVEATitojun2003-08-281-1/+2
|
* add CAVEATS sectionitojun2003-08-281-1/+55
|
* sync STT_NOTYPE parsign w/ kvm_mkdb; pb@ testingmickey2003-08-271-2/+15
|
* document what happens when pollfd.fd is -1deraadt2003-08-191-1/+10
|
* Sort headers in examplegrange2003-08-171-2/+2
| | | | ok millert@
* just use sysctl for stirring. thread safe and can't fail.tedu2003-08-161-23/+10
| | | | ok deraadt and co.
* Split crypto routine sup again, but differently. This should make thederaadt2003-08-123-84/+149
| | | | mail floppy parts a fair bit smaller.
* implement CLOCK_MONOTONIC from NetBSD; ok marc@kevlo2003-08-111-3/+5
|
* refer to RFCs consistently (RFC XXXX);jmc2003-08-0810-48/+48
|
* unsplice crypt.c and morecrypt.c; start to document some bcrypt and md5cryptderaadt2003-08-074-658/+67
| | | | things in crypt.3, and create MLINKS
* ansideraadt2003-08-072-18/+8
|
* Remove some double semicolons (hmm, do two semis equal a maxi?).millert2003-08-061-3/+3
| | | | I've skipped the GNU stuff for now. From Patrick Latifi.
* getdiskbyname(3) requires <sys/types.h>; Patrick Latifimillert2003-08-061-1/+2
|
* add missing header. millert ok.fgsch2003-08-061-1/+2
|
* In setjmp() and sigsetjmp(), be sure to return with r14 and r15 unchanged, asmiod2003-08-062-4/+11
| | | | they are part of the call preserved register set, and gcc -O relies upon this.
* ansify function argumentsjfb2003-08-041-34/+16
| | | | ok tdeval@
* Use WCONTINUED as width for list of wait options; jmc@millert2003-08-031-2/+2
|
* Implement the WCONTINUED flag to the wait(2) family of syscalls and themillert2003-08-031-9/+20
| | | | | | | | | associated WIFCONTINUED macro as per 1003.1-2001. Adapted from FreeBSD. A minor amount of trickiness is involved here. The value for WCONTINUED is chosen in such a way that _WSTATUS(_WCONTINUED) == _WSTOPPED and the WIFSTOPPED macro has been modified such that WIFSTOPPED(_WCONTINUED) != _WSTOPPED. This means we don't need to add an extra check to the WIFSIGNALED and WIFSTOPPED macros. deraadt@ OK.
* Rename rootd to needslash and invert its value. This fixes the checkmillert2003-08-011-6/+6
| | | | | for ENAMETOOLONG, though since we use strlcpy() and strlcat() this is not a big deal. Problem found by vincent@
* Fix the *longjmp() behaviour - it is legal to reuse a jmp_buf several times.miod2003-08-013-36/+15
| | | | Gets us a working perl 5.8.
* fix a protoderaadt2003-07-311-2/+2
|
* Remove my email address from my entry in the AUTHORS sectionmillert2003-07-302-4/+4
|
* missing #includehenning2003-07-301-1/+2
| | | | Claudio Jeker, PR3382
* document: ip.portfirst ip.portlast ip.porthifirst ip.porthilast;jmc2003-07-291-1/+28
| | | | | | | | | reported by Alejandro G. Belluscio on bugs@ Also document: ip.maxqueue thanks to henning, pb, otto and markus for their help. ok henning@
* add a spot of .Fa to variable namesavsm2003-07-291-2/+5
| | | | jmc@ ok
* sync struct addrinfo with what's in <netdb.h>;jmc2003-07-271-11/+11
| | | | ok itojun@
* change the description of [EINVAL] for mount() and unmount();jmc2003-07-251-3/+3
| | | | | | discussed with tedu. reported by Hannah Schroeter on misc@
* warn about unsafe APIs at link time. Conditional on libc/Makefile definingderaadt2003-07-249-15/+63
| | | | | APIWARN; disabled by default. In use by many developers for quite some time, now they have a common knob to enable/disable this
* kill a whitespace at EOL;jmc2003-07-231-2/+2
|
* bug library/3297: lib/libc/net/get{addr,name}info should share mutexmarc2003-07-212-4/+9
| | | | 'Looks right' deraadt@
* updated licensemillert2003-07-213-68/+47
|
* Remove bogus static; from Hiroki Satomillert2003-07-211-3/+3
|
* minor number bump due to added functionsmillert2003-07-211-1/+1
|