| Commit message (Expand) | Author | Age | Files | Lines |
* | All these files include <stdlib.h>, so do not need to cast | deraadt | 2015-08-20 | 2 | -5/+5 |
* | Just return if nmemb is 0. Avoids a NULL dereference and is | millert | 2015-06-21 | 1 | -1/+4 |
* | Add dlclose(3) to SEE ALSO | guenther | 2015-05-12 | 1 | -2/+3 |
* | When checking flags that will be passed to open(), test the O_ACCMODE portion | guenther | 2015-05-11 | 1 | -2/+3 |
* | Another couple of commas in the wrong place, ok jmc | nicm | 2015-04-14 | 1 | -3/+3 |
* | Make pthread_atfork() track the DSO that called it like atexit() does, | guenther | 2015-04-07 | 1 | -1/+19 |
* | improve realloc. when expanding a region, actually use the free page cache | tedu | 2015-04-06 | 1 | -7/+16 |
* | remove incorrect statement. the standard *does* require calloc to check | tedu | 2015-03-14 | 1 | -7/+2 |
* | lsearch and lfind return void * | tedu | 2015-02-15 | 1 | -4/+4 |
* | Use .Rv where appropriate, and move it to RETURN VALUES; | schwarze | 2015-01-29 | 2 | -18/+7 |
* | Improve wording in alloca. | tedu | 2015-01-17 | 1 | -7/+5 |
* | Move to the <limits.h> universe. | deraadt | 2015-01-16 | 3 | -9/+6 |
* | missing , found by Dongsheng Song | deraadt | 2015-01-08 | 1 | -3/+3 |
* | rename kern enter/exit macros to malloc enter/leave to better reflect | tedu | 2015-01-05 | 1 | -7/+7 |
* | typo; ok deraadt | sthen | 2014-12-16 | 2 | -3/+3 |
* | warn for correct symbol | deraadt | 2014-12-16 | 1 | -2/+2 |
* | Xr and Ox fixes; | jmc | 2014-12-09 | 3 | -12/+18 |
* | random seed buffer must be unsigned | deraadt | 2014-12-09 | 1 | -2/+2 |
* | fix NAME; | jmc | 2014-12-09 | 1 | -3/+3 |
* | improve warnings from rand_r(), rand(), and random()libressl-v2.1.2 | deraadt | 2014-12-09 | 2 | -3/+8 |
* | more standardsier: cast to int to make sure we keep the negative numbers. | tedu | 2014-12-09 | 1 | -2/+2 |
* | Oops, got the sense of the test backwards. Hilarious that we didn't spot it. | deraadt | 2014-12-08 | 1 | -1/+1 |
* | Change rand(), random(), drand48(), lrand48(), mrand48(), and srand48() | deraadt | 2014-12-08 | 13 | -159/+267 |
* | remove cfree from documentation | tedu | 2014-12-08 | 1 | -19/+3 |
* | delete obsolete sunos cfree function. ok deraadt millert naddy | tedu | 2014-12-08 | 2 | -42/+3 |
* | avoid left shift overflow in reallocarray. | bcook | 2014-12-08 | 1 | -2/+2 |
* | malloc(3) is in the "comp" install set, malloc.conf(5) in "man", | schwarze | 2014-12-06 | 2 | -128/+10 |
* | Replace all 14 instances of .St -ansiC-99 in our tree with .St -isoC-99. | schwarze | 2014-11-30 | 10 | -30/+30 |
* | obvious STANDARDS update | schwarze | 2014-11-30 | 2 | -14/+10 |
* | rand() is a pseudo-random number generator | millert | 2014-11-25 | 1 | -3/+3 |
* | Don't describe random() as "better". | millert | 2014-11-25 | 1 | -5/+5 |
* | Warn people to use arc4random() in DESCRIPTION so they see it using | millert | 2014-11-25 | 1 | -5/+8 |
* | Document behavior of atexit() when called in a DSO that is later unloaded. | guenther | 2014-11-20 | 1 | -2/+14 |
* | Reduce instances of `` '' in manuals. | bentley | 2014-11-15 | 1 | -5/+5 |
* | clean up verbiage around the calculations; ok ingo jmc otto | deraadt | 2014-10-30 | 1 | -5/+5 |
* | Don't mention old systems where realloc(NULL, n) didn't work as we | millert | 2014-10-30 | 1 | -11/+7 |
* | Save space in man page: err() -> errc() and combine vars. | doug | 2014-10-23 | 1 | -18/+11 |
* | Avoid writing in second person in malloc.3 | doug | 2014-10-22 | 1 | -13/+12 |
* | List extensions in the STANDARDS section, replacing some text below CAVEATS. | schwarze | 2014-10-20 | 1 | -33/+30 |
* | make RETURN VALUES more concise | schwarze | 2014-10-19 | 1 | -77/+28 |
* | Revamp malloc.3 by reordering the sections and rewriting parts. | doug | 2014-10-19 | 1 | -185/+417 |
* | Revert last commit due to changed semantics found by make release. | doug | 2014-10-19 | 1 | -10/+10 |
* | Better POSIX compliance in realpath(3). | doug | 2014-10-18 | 1 | -10/+10 |
* | remove unused variable | chl | 2014-10-13 | 1 | -3/+1 |
* | using reallocarray() gives us multiplicative integer overflow checking | deraadt | 2014-10-08 | 1 | -3/+3 |
* | Do not claim that empty numbers set EINVAL, our implementation doesn't. | schwarze | 2014-09-14 | 2 | -37/+61 |
* | Make sure that the following functions return 0 and EINVAL as | schwarze | 2014-09-13 | 6 | -20/+60 |
* | obvious cases of missing .An; | schwarze | 2014-09-08 | 1 | -3/+3 |
* | a small tweak to improve malloc in multithreaded programs. we don't need | tedu | 2014-08-18 | 1 | -7/+21 |
* | XPG requires insque() and remque() to work with linear lists and not just | guenther | 2014-08-15 | 3 | -21/+26 |