summaryrefslogtreecommitdiff
path: root/lib/libc/gen
AgeCommit message (Collapse)Author
1999-07-04trash some old leftover macros and replace them with -mdoc macrosAaron Campbell
1999-07-04document KERN_RND and KERN_NOSUIDCOREDUMPAaron Campbell
1999-07-02remove redundant .Pp macrosAaron Campbell
1999-07-02- rnd(4) does not exist, it is really random(4)Aaron Campbell
- iteger -> integer - cpus -> CPUs
1999-07-02some formatting fixesAaron Campbell
1999-07-02remove extra comma from .Dd arguments: "Month ##, ####" is the correct format,Aaron Campbell
not "Month, ##, ####"
1999-06-30document KERN_ARND, this mangpage needs work, KERN_RND, KERN_NOSUIDCOREDUMP,Niels Provos
etc ... are not documented.
1999-06-29add Xr for stdio(3) like the is*() man pagesAaron Campbell
1999-06-06Grammatical, spelling, and format fixesPaul Janzen
1999-06-05use .Tn instead of .Em for logical/bitwise OR + ANDAaron Campbell
1999-06-05change some .Em/.Va to .Li, looks nicerAaron Campbell
1999-06-05change some .Va to .Li, also more .DvAaron Campbell
1999-06-05some more .DvAaron Campbell
1999-06-04After some constructive criticism from pjanzen@ and some e-mail tag:Aaron Campbell
- only use the .Dv NULL form when referring explicitly to a function argument or return value - otherwise, use these forms: o non-null o null-terminated (hyphenated form for predicate adjective) o else, null terminated, or null terminate, whichever the case o null pointer, null byte, null string, etc. - may use NUL to refer to an ASCII NUL, but it doesn't need a .Tn macro In general, capitalizing the word "null" everywhere is unnecessary and makes the man pages harder to read. The above is consistent with popular programming texts (i.e., K&R, Stevens).
1999-06-03-20 -> \-20Aaron Campbell
1999-06-03use \-1, not -1, to change the meaning of `-' to minus sign from hyphen;Aaron Campbell
pjanzen@
1999-06-01getfsstat now takes a size_t, not long, for the length parameterTodd C. Miller
1999-05-30Careless: I forgot to propagate obvious consts.Marc Espie
1999-05-29repairs; go back over some old files, because we should properly distinguishAaron Campbell
between NUL and NULL, i.e., don't use the .Dv (defined variable) macro when referring to an ASCII NUL
1999-05-29repairsAaron Campbell
1999-05-29repairsAaron Campbell
1999-05-29repairsAaron Campbell
1999-05-29repairsAaron Campbell
1999-05-28proper const semantics for dirname & basename.Marc Espie
(this follows FreeBSD and Linux. Single Unix 2 is still illogical)
1999-05-28fix tytypos.Marc Espie
1999-05-27more missing .El macros filled inAaron Campbell
1999-05-27or'ing -> OR'ingAaron Campbell
1999-05-27sync cgetset() Fn definition with prototype from stdlib.hAaron Campbell
1999-05-25punctuationAaron Campbell
1999-05-25all functions need a return type and at least one arg, even if it's voidAaron Campbell
1999-05-25add .Ft macros and move the argument type into each function definitionAaron Campbell
1999-05-23remove argument from .Os macros so value in /usr/share/tmac/mdoc/doc-commonAaron Campbell
is used instead; kwesterback@home.com
1999-05-20add missing #include's from SYNOPSIS sectionAaron Campbell
1999-05-19add default value for mssdflt. more rationale might be needed.Niels Provos
1999-05-19document tcp.sack and tcp.mssdflt for sysctlNiels Provos
1999-05-171) Only do pointer adjusting if realloc() changed our pointerTodd C. Miller
2) Only adjust pointers based on ftp_path, not fts_name. 3) Adjust the entries in the file list, as well as the trees, if needed. Loosely based on a patch from Stas Kisel <stas@SONET.CRIMEA.UA>
1999-05-16Cleanup xrefs under SEE ALSO. Specifically:Alex Feldman
- Sort xrefs by section, and then alphabetically. - Add missing commas between xref items. - Remove commas from the last xref entry. - Remove duplicate entries.
1999-05-14Removed duplicated references; millertAlex Feldman
1999-05-10correct some Xr's which referred to the wrong man page sectionsAaron Campbell
1999-04-02.Pp macros do not belong immiedately after .Sh section header linesAaron Campbell
1999-03-29initgroups(3) should not spew to stderr; giles@nemeton.com.auTodd C. Miller
Also document the NGROUPS limit.
1999-03-10fix comma splices involving 'however'Paul Janzen
1999-03-10Daylight Saving Time, not savingsPaul Janzen
1999-02-27make function names the correct caseTheo de Raadt
1999-02-25Don't segfault when sysctl failsArtur Grabowski
1999-02-25constify getcap(3). This fixes a warning in libcurses and doesn'tTodd C. Miller
really change the API since those parameters that was been constified really are not modified by getcap(3) routines.
1999-02-16daemon returns intTheo de Raadt
1999-01-08when malloc fails set bufsize to 0 or all other calls to getmntinfo will failArtur Grabowski
1998-12-21md spinlockDavid Leonard
1998-11-25clarify; d@Aaron Campbell