millert
676f8aa08c
Add missing MLINKs
25 years ago
espie
7acebf4f57
Clean up memchr slightly to better match coming memrchr
(K&R-style type promotions are evil),
25 years ago
ericj
15d114722d
add man page for login_fbtab()
25 years ago
aaron
0ffab0433c
Tweaks; millert@
25 years ago
millert
59e4929dbc
calloc.c is back
25 years ago
millert
b3d4a938bb
calloc() needs to be separate from malloc in case a user wants to have
their own malloc() implementation.
25 years ago
aaron
cdda3b8eef
Merge calloc(3) man page into malloc.3; as suggested by millert@
25 years ago
millert
e924435af1
Move calloc() into malloc.c and only zero out the area if malloc()
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)
25 years ago
art
16cfb0f4b1
Install man-page links for strtok_r.
25 years ago
art
907d9be25c
Document strtok_r.
25 years ago
art
a2031878fe
Implement strtok_r.
25 years ago
espie
fb14ddc268
- let cryptographic checksums refer to each other
- avoid .Xref to one's own manpage
25 years ago
deraadt
8066fa51cc
Set j = i after arc4random key schedule to be more like arc4 stream cipher;
from conversations between various people
25 years ago
aaron
2ba64b78b9
Formatting and grammar.
25 years ago
alex
bacba34834
Typo fixes.
25 years ago
espie
8bd53cdab8
index/rindex as deprecated synonyms to strchr/strrchr.
25 years ago
deraadt
0eef5e627a
crank minor; costa forgot
25 years ago
csapuntz
15f3825602
Add opendisk from NetBSD.
25 years ago
deraadt
b3d4ba5664
use writev() where possible
25 years ago
aaron
a9bd0a9443
appropiate -> appropriate; inspired by it being misspelled in a NetBSD commit
message :-)
25 years ago
pjanzen
563abe819a
Supply examples and discuss limitations.
25 years ago
deraadt
ac744f6406
use stronger language when pointing people at strtol()
25 years ago
espie
100929b794
typo
25 years ago
aaron
f119972cc8
succesful -> successful
25 years ago
pjanzen
121f5e54e4
Using .Li inside a .Bd -literal block messes up the fonts thereafter;
.Li ... -> \&...
25 years ago
millert
c872be65fb
Remove a lie. We don't skip /dev/ttyv* since our pcvt uses /dev/ttyC*.
25 years ago
millert
f110e3be6d
More <sys/file.h> vs. <fcntl.h> and open() flags fixes.
25 years ago
millert
5e97137069
Explicitly include <sys/types.h> and some minor style points.
25 years ago
deraadt
f61554143a
more unescaped \n lines in nroff documents
25 years ago
aaron
4faaf50374
fix bad English, spelling, grammar, comma splices, etc.
25 years ago
aaron
59a9fbf44b
insert a missing .El macro
25 years ago
jakob
42cd8e12d7
Added fparseln from NetBSD.
ok deraadt@
25 years ago
aaron
fcc86d2cb7
better english; deraadt@/millert@
25 years ago
aaron
62c499bcb2
- remove all trailing whitespace
* except when it is escaped with a `\' at the end of the line
- fix remaining .Nm usage as well
- this is from a patch I received from kwesterback@home.com, who has been
working on some scripts for fixing formatting errors in mdoc'd man pages
Ok, so there could be a cost/benefit debate with this commit, but since I have
the patch we might as well commit it...
25 years ago
aaron
312386f8de
when using `-' as a negative sign, escape it with a backslash so troff knows
it's not supposed to be a hyphen/dash
25 years ago
aaron
5be2a374dd
The proper order of the ``introductory'' macros in a man page is .Dd/.Dt/.Os.
Out of the approximately 1450 man pages, only about 90 of them were wrong.
Thanks to kwesterback@home.com for coming up with a script and patch to repair
this. The patch also inserted a .Os macro in the few man pages that were
missing one.
25 years ago
aaron
92c35c4d57
trash some old leftover macros and replace them with -mdoc macros
25 years ago
aaron
f0554a8a8f
better wording
25 years ago
aaron
142a0471af
whoops, fix a bug in my example :)
25 years ago
aaron
f4692eac7a
add an example
25 years ago
aaron
9fff4267fe
remove redundant .Pp macros
25 years ago
aaron
0d491ceee6
remove extra comma from .Dd arguments: "Month ##, ####" is the correct format,
not "Month, ##, ####"
25 years ago
deraadt
26897f868a
clarify trade secret issue
25 years ago
provos
5f90dc1783
if /dev/arandom is not available for seeding, use data from sysctl
kern.arandom.
25 years ago
aaron
5457e11d62
first round of repairs on stdlib
25 years ago
aaron
f49d82ce18
repairs
25 years ago
aaron
67b066fa85
new mdoc bm(3) man page
25 years ago
millert
f194bdc090
When finding the end of dst, never traverse more than siz bytes. This
keeps us from misbehaving if the user gives us a src string that is not
NUL-terminated. This is one of those "should not happen" cases but it
is good to play it safe. Pointed out by Casper Dik <casper@holland.sun.com>
25 years ago
aaron
1fb47c1d6b
some NAME section cleanup
25 years ago
pjanzen
6e42fdf854
Grammatical, spelling, and format fixes
25 years ago