summaryrefslogtreecommitdiff
path: root/src/lib/libc (follow)
Commit message (Expand)AuthorAgeFilesLines
...
* Wrap blowfish, sha*, md5, and rmd160 so that internal calls go directguenther2015-09-112-2/+24
* Add support for building arc4random with MSVC.bcook2015-09-101-7/+8
* Pull in namespace.h when building all .c files using gcc's -include option,guenther2015-09-102-3/+18
* reduce .Nd to one line and kill .Tn while hereschwarze2015-09-105-25/+15
* missing commas at the end of .Nm lines in the NAME sectionschwarze2015-09-101-3/+3
* tweak Nd after previous; ok mpijmc2015-09-101-2/+2
* Remove link_addr(3). A function to encode the name of an interface inmpi2015-09-103-136/+8
* Stop exporting from libc the <mpool.h> and the mpool_* APIguenther2015-09-091-0/+122
* Fix aliasing of sys_errlist, sys_nerr, sys_siglist, and sys_signameguenther2015-09-062-15/+4
* Use new framework for wrapping cat{open,gets,close}(), eliminatingguenther2015-09-052-8/+2
* Add framework for resolving (pun intended) libc namespace issues, usingguenther2015-08-3143-49/+233
* Use nanosleep instead of sleep to avoid the extra layer and simplify laterguenther2015-08-301-5/+8
* Use static and __{BEGIN,ENV}_HIDDEN_DECLS to hide a bunch of internalguenther2015-08-272-4/+7
* Move the __rand48_* declarations into rand48.h, and then hide both themguenther2015-08-277-25/+13
* All these files include <stdlib.h>, so do not need to castderaadt2015-08-202-5/+5
* call it bcrypt in the man page tootedu2015-07-231-3/+3
* permit "bcrypt" as an alias for "blowfish". this is, after all, whattedu2015-07-231-11/+27
* Unbreak, add errno headerjeremy2015-07-181-1/+2
* set errno in null cases, just in case.tedu2015-07-181-2/+3
* standards compliant error return (null). will make ruby happier, at least.tedu2015-07-181-5/+2
* Just return if nmemb is 0. Avoids a NULL dereference and ismillert2015-06-211-1/+4
* Remove needless casts. There's no reason to cast delim to char *millert2015-06-191-5/+4
* force reseeding if pid has changed.eric2015-06-041-2/+7
* Make index/rindex weak aliases of strchr/strrchr since they are notmillert2015-05-154-90/+6
* rev 1.3 introduced a check to an if statement without adding braces.jsg2015-05-141-3/+1
* If crypt(3) is called with an unknown setting, return NULL insteadbluhm2015-05-131-1/+3
* Add dlclose(3) to SEE ALSOguenther2015-05-121-2/+3
* When checking flags that will be passed to open(), test the O_ACCMODE portionguenther2015-05-111-2/+3
* Another couple of commas in the wrong place, ok jmcnicm2015-04-141-3/+3
* Make pthread_atfork() track the DSO that called it like atexit() does,guenther2015-04-073-2/+81
* bludgeon DES support out of crypt. long live the bcrypt.tedu2015-04-062-761/+9
* improve realloc. when expanding a region, actually use the free page cachetedu2015-04-061-7/+16
* Make rcmdsh(3) not fail if it is passed a non resolvable hostname.halex2015-03-233-20/+16
* differentiate between a failed read, returning -1, and encounteringhalex2015-03-221-2/+4
* unmute rcmd hostname lookup failurehalex2015-03-221-3/+2
* zap #if 0'd code that's been dead since '96halex2015-03-191-7/+0
* remove incorrect statement. the standard *does* require calloc to checktedu2015-03-141-7/+2
* Update comment to match code; Caspar Schutijserlibressl-v2.1.4millert2015-03-021-2/+2
* we don't let strtonum errors bleed through now.tedu2015-02-241-4/+2
* Set errno to EINVAL, instead of letting ERANGE escape out.tedu2015-02-241-2/+4
* Amend documentation for AI_ADDRCONFIGjca2015-02-161-2/+4
* lsearch and lfind return void *tedu2015-02-151-4/+4
* use a width specifier for lists, and Sq rather than Dq for single lettersjmc2015-02-111-3/+3
* the possible algos for pref should be documented heretedu2015-02-111-4/+11
* Use .Rv where appropriate, and move it to RETURN VALUES;schwarze2015-01-293-27/+13
* dial the time back to about 0.1s, closer to the original targets andtedu2015-01-281-4/+4
* Improve wording in alloca.tedu2015-01-171-7/+5
* Use ">", not ">=" when comparing length to HOST_NAME_MAX sincemillert2015-01-161-3/+3
* Replace HOST_NAME_MAX+1-1 with HOST_NAME_MAX. OK deraad@millert2015-01-162-8/+8
* Replace check for ">= HOST_NAME_MAX+1" with "> HOST_NAME_MAX".millert2015-01-161-1/+1