wiz
74eeae1bcf
Drop trailing whitespace; null -> nul; & -> \*[Am]
2004-04-21 00:19:40 +00:00
christos
887ab9a1b5
bump.
2004-04-21 00:02:46 +00:00
christos
4e510a4ef6
protect fgetstr
2004-04-21 00:02:26 +00:00
christos
6321f42fe9
Add a generalized version of fgetln that can stop at an arbitrary delimiter,
...
and implement fgetln on top of that.
2004-04-21 00:01:57 +00:00
atatat
b91680c172
The API to hostid that libc provides may involve a "long", but the
...
interface the kernel provides to libc (and the rest of userland) is an
"int". Therefore, stop pretending that it's a long, since that can
incur bizarre failure modes if the types also don't have the same size
(sparc64, alpha, etc).
2004-04-19 13:16:42 +00:00
wiz
71cdf6adc0
Fix typo in xref.
2004-04-19 11:27:03 +00:00
lukem
968e09b852
Document RLIMIT_SBSIZE.
2004-04-19 01:53:21 +00:00
matt
d07ed6425d
Add sbsize login capability.
2004-04-18 18:21:43 +00:00
lukem
1f560b89c0
Append to AFLAGS rather than setting AINC.
2004-04-18 04:26:15 +00:00
wiz
962fdd9cb4
Remove duplicate word, from jfb@openbsd via jmc@openbsd.
2004-04-15 08:13:29 +00:00
kleink
84c861c7a5
Add documentation for %v. Noted by Havard Eidnes in PR bin/25180.
2004-04-14 21:59:39 +00:00
wiz
6677b3582e
Add missing "-".
2004-04-14 13:40:30 +00:00
itojun
05e937a343
remove unneeded refs to rfc2553. jmc
2004-04-14 08:07:29 +00:00
itojun
66909f0052
remove prototype decl for removed function
2004-04-14 04:46:04 +00:00
itojun
777d124a65
remove unused code
2004-04-14 04:45:28 +00:00
itojun
8803684aa2
document AI_NUMERICSERV
2004-04-14 04:42:35 +00:00
itojun
a1b7e86ab4
implement AI_NUMERICSERV (as defined in RFC3493)
2004-04-14 04:37:06 +00:00
wiz
6f852e37a7
One too many punctuation fixed in previous.
2004-04-13 23:03:22 +00:00
wiz
f2d94d5597
Punctuation fixes; mark up NULL.
2004-04-13 23:02:28 +00:00
he
30f13a8751
Avoid using preprocessing conditionals in a macro argument list at least
...
as long as all ports have not yet been converted to using gcc 3.3.3.
Build bug discovered when building for vax.
2004-04-11 09:10:58 +00:00
atatat
8d5507a13f
Weak aliases for sysctlfoobar() functions.
2004-04-08 05:45:26 +00:00
atatat
11d2a71805
Descriptions for user.* sysctl nodes. Mostly copied from sysctl(3).
2004-04-08 04:10:44 +00:00
christos
9717f6662e
check fflush() return code (from Julian Coleman)
2004-04-07 17:27:10 +00:00
ross
317058e147
Ignore errors when making tags here with the override target. (Now matches
...
the default target in bsd.dep.mk, which dashes the ctags commands.)
2004-04-07 03:49:16 +00:00
wiz
2569049f22
Add comma after "i.e.".
2004-04-04 23:41:23 +00:00
matt
6aeab1d37b
Update FPSCR_FX consistently per the Programming Environment Manual. So
...
if any sticky bit is set, FPSCR_FX should be set. If no sticky bits are
set, then FPSCR_FX should be clear.
2004-04-04 19:54:05 +00:00
matt
6da9a37235
Deal with the way FP_X_INV works. That maps to FPSCR_VX. However FPSCR_VX
...
is not a sticky, it's actually an inclusive OR of 9 stick bits. So when
FP_X_INV is cleared, we need to clear all of those bits. When FP_X_INV is
set, we set all of them.
2004-04-04 19:31:19 +00:00
matt
47e6b704bb
Lint cleanup. s/u_int64_t/uint64_t
2004-04-04 19:28:13 +00:00
matt
fb0f2fdab6
Supress a few lint warnings. s/u_int64_t/uint64_t/
2004-04-04 19:27:19 +00:00
matt
acdea83164
Suppress a lint warning.
2004-04-04 19:26:21 +00:00
perry
9b863e179d
make this man page explain what the calls do somewhat better.
2004-04-04 17:10:48 +00:00
lha
6f880d33f3
bump minor version on libkrb5
2004-04-04 14:01:05 +00:00
christos
46937c5008
Avoid infinite recursion on:
...
echo "foo foo bar bar bar baz" | sed 's/\([^ ]*\)\( *\1\)*/\1/g'
From OpenBSD.
2004-04-03 17:00:00 +00:00
matt
386a0ebdec
Rather than use magic values, include <powerpc/fpu.h> and use those
...
definitions to generate the magic bits.
2004-04-02 22:55:19 +00:00
lha
4d21efe5f7
Merge changes between heimdal-0.6 and heimdal-0.6.1
2004-04-02 14:59:46 +00:00
pooka
12004f8f23
Pipes aren't "full-duplex byte streams", so don't compare SOCK_STREAM
...
type sockets to them.
2004-03-31 16:42:19 +00:00
snj
0e9a95f62e
Simplify a clunky multi-line Fn, correct Nm usage, use Dq for quotes, add
...
some commas.
2004-03-31 01:25:46 +00:00
snj
c747b3ab1b
Bump date for last.
2004-03-31 00:14:30 +00:00
heas
d9287af8b5
Add bits about FTS_WHITEOUT & FTS_W.
2004-03-31 00:01:47 +00:00
wiz
029ff5c848
Some wording improvements and other minor fixes from OpenBSD.
2004-03-30 13:28:13 +00:00
wiz
f343a3e8ab
Use pid_t for pids. From Jeff Ito in PR 24854.
2004-03-29 11:52:39 +00:00
wiz
c74c0a1a12
Add a newline, remove a comma, and reword STANDARDS section
...
slightly.
2004-03-28 12:23:21 +00:00
jdc
3a817d94fd
Increment libcurses minor to 1 (addition of *echochar()).
2004-03-28 08:59:15 +00:00
jdc
a6a9a97d12
Changes to support *echochar().
...
Should fix PR lib/24927.
2004-03-28 08:58:37 +00:00
jdc
5eb61d5ca7
Implement *echochar().
...
Should fix PR lib/24927.
2004-03-28 08:58:13 +00:00
uwe
e8f97ddda1
Mark gcc "millicode" functions .hidden if compiled for PIC. NB: these
...
files are *NOT* used, as we now provide gcc's version of millicode in
libgcc_pic.
2004-03-27 03:48:23 +00:00
he
9e1e88e1c4
Introduce sysc_init_field() and use it to make the code a little less ugly.
...
Also, fix another gcc2-unfriendly initialization.
2004-03-26 22:54:42 +00:00
enami
d43ce6c183
Redo previous in a different way; cast the character held in int variable
...
as unsigned char just before passing isalnum() in ISWORD() rather than
fetching it as unsigned char. It is ok since EOF is never passed to ISWORD()
(though it will be a bit inefficient.)
Addresses PR#24929.
2004-03-26 22:42:17 +00:00
wiz
359ed99579
Add comma in enumerations, grammar fix, and replace &
...
with \*[Am] for html output.
2004-03-26 22:18:15 +00:00
drochner
0341f6a45e
the WARN_REFERENCES text "include <signal.h> for correct reference" is pointless
...
as <signal.h> won't help you, so remove it
2004-03-26 22:15:03 +00:00