summaryrefslogtreecommitdiff
path: root/src/lib/libc/stdlib (follow)
Commit message (Collapse)AuthorAgeFilesLines
...
* Clarify; gluk@ptci.ruaaron2000-10-251-2/+2
|
* Add a CAVEATS section to warn programmers that shell meta-characters willaaron2000-10-061-1/+9
| | | | be passed to the command interpreter.
* For man pages that describe multiple functions, split the .Nm argumentsaaron2000-08-094-8/+15
| | | | onto separate lines in the NAME section.
* #ifdef vax -> #ifdef __vax__bjc2000-04-301-2/+2
|
* Flesh out stdlib function man pages.aaron2000-04-2028-246/+195
|
* - Formatting repairs and standardizations.aaron2000-04-201-77/+104
| | | | | - s/MESSAGES/DIAGNOSTICS/, and put message descriptions in a nice list. - Talk more about how using malloc() in signal handlers is bad.
* missing THREAD_UNLOCK; netch@segfault.kiev.uaderaadt2000-04-101-1/+2
|
* Fix the leak for real (that's what I get for hacking when i can't sleep).millert2000-04-041-5/+7
|
* Fix an fd leak if the read from /dev/arandom fails. Pointed out bymillert2000-04-041-5/+5
| | | | Markus Friedl.
* MLINK srandomdevmillert2000-04-041-1/+2
|
* Add srandomdev() from FreeBSD for use by sendmail and others.millert2000-04-032-3/+69
|
* In Unix land we prefer "whitespace" to "white space" or "white-space". Ataaron2000-03-044-8/+8
| | | | least, this is the impression I get from looking at a lot of Perl docs.
* typo fix; halogen@nol.netderaadt2000-03-011-2/+2
|
* repair prototypes; cky@pobox.comderaadt2000-02-251-5/+5
|
* repairderaadt2000-01-251-2/+2
|
* Use .Er macro when referring to errno error names.aaron2000-01-221-3/+3
|
* Clarify and mention that errno is set to ENOMEM on failure of malloc(),pjanzen2000-01-191-5/+11
| | | | calloc(), and realloc(). Idea from NetBSD.
* Max value returned is 2^31 - 1, regardless of the arch-dependent LONG_MAX.pjanzen2000-01-191-7/+1
|
* include thread_private.hd2000-01-061-1/+2
|
* Add missing MLINKsmillert1999-11-171-1/+2
|
* Tweaks; millert@aaron1999-11-101-8/+9
|
* calloc.c is backmillert1999-11-101-1/+1
|
* calloc() needs to be separate from malloc in case a user wants to havemillert1999-11-102-25/+54
| | | | their own malloc() implementation.
* Merge calloc(3) man page into malloc.3; as suggested by millert@aaron1999-11-093-90/+41
|
* Move calloc() into malloc.c and only zero out the area if malloc()millert1999-11-093-55/+26
| | | | | | didn't do so for us. By default, malloc() zeros out the space it allocates but the programmer cannot rely on this as it is implementation- specific (and configurable via /etc/malloc.conf)
* Formatting and grammar.aaron1999-09-271-2/+2
|
* use writev() where possiblederaadt1999-09-161-12/+29
|
* Supply examples and discuss limitations.pjanzen1999-09-142-7/+120
|
* use stronger language when pointing people at strtol()deraadt1999-09-131-1/+12
|
* typoespie1999-09-071-2/+2
|
* succesful -> successfulaaron1999-09-061-2/+2
|
* better english; deraadt@/millert@aaron1999-07-202-6/+6
|
* trash some old leftover macros and replace them with -mdoc macrosaaron1999-07-042-11/+6
|
* remove extra comma from .Dd arguments: "Month ##, ####" is the correct format,aaron1999-07-021-2/+2
| | | | not "Month, ##, ####"
* first round of repairs on stdlibaaron1999-06-2930-150/+182
|
* "SEE ALSO" -> SEE ALSO, missed these files beforeaaron1999-05-281-2/+2
|
* more missing .El macros filled inaaron1999-05-272-12/+14
|
* getopt(3) does not return -1 when encountering unrecognized optionsaaron1999-05-271-3/+2
|
* punctuationaaron1999-05-251-2/+2
|
* remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonaaron1999-05-235-10/+10
| | | | is used instead; kwesterback@home.com
* Cleanup xrefs under SEE ALSO. Specifically:alex1999-05-168-22/+22
| | | | | | | - Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries.
* correct some Xr's which referred to the wrong man page sectionsaaron1999-05-103-8/+7
|
* Clarify realloc return valuemillert1999-03-231-3/+4
|
* fix more comma splices that involve misuse of conjunctive adverbspjanzen1999-03-111-2/+2
|
* make function names the correct casederaadt1999-02-274-17/+17
|
* wrong ret type for write define (millert@)d1999-02-031-2/+2
|
* malloc can't use write() if it fails very early, so use the unwrapped ↵d1999-02-011-1/+10
| | | | syscall _thread_sys_write() if we are threaded
* No need to cast to they type we already are. Also minor KNFmillert1998-12-071-3/+6
|
* remove bogus divide, fixes pr #656millert1998-12-071-2/+2
|
* bad longderaadt1998-11-221-2/+2
|