CVS log for src/lib/libutil/snprintb.3
Up to [cvs.NetBSD.org] / src / lib / libutil
Request diff between arbitrary revisions
Keyword substitution: kv
Default branch: MAIN
Revision 1.39: download - view: text, markup, annotated - select for diffs
Mon Apr 8 21:28:35 2024 UTC (8 months ago) by rillig
Branches: MAIN
CVS tags: perseant-exfatfs-base-20240630,
perseant-exfatfs-base,
perseant-exfatfs,
HEAD
Diff to: previous 1.38: preferred, colored
Changes since revision 1.38: +88 -36
lines
snprintb.3: provide examples for hexadecimal character escapes
Suggested by uwe@, in reaction to the previous commit, which preferred
octal in the examples. Hexadecimal escapes are more familiar to most
programmers, and the chance of mistaking \x14 for decimal 14 is less
than the chance of mistaking octal \014 for decimal 14.
Revision 1.38: download - view: text, markup, annotated - select for diffs
Sun Apr 7 14:28:26 2024 UTC (8 months ago) by rillig
Branches: MAIN
Diff to: previous 1.37: preferred, colored
Changes since revision 1.37: +23 -23
lines
snprintb.3: clean up formatting and wording, prefer octal in examples
Using hexadecimal character escapes requires separate string literals if
the description starts with one of the letters A-F; octal character
escapes have at most 3 digits, reducing ambiguity.
Revision 1.37: download - view: text, markup, annotated - select for diffs
Sun Apr 7 12:05:23 2024 UTC (8 months ago) by rillig
Branches: MAIN
Diff to: previous 1.36: preferred, colored
Changes since revision 1.36: +121 -119
lines
snprintb: reject combinations of 'f' with ':' as well as 'F' with '='
These combinations would lead to garbled output.
Revision 1.36: download - view: text, markup, annotated - select for diffs
Thu Feb 29 21:08:54 2024 UTC (9 months, 1 week ago) by rillig
Branches: MAIN
Diff to: previous 1.35: preferred, colored
Changes since revision 1.35: +2 -2
lines
snprintb.3: fix typo
Revision 1.35: download - view: text, markup, annotated - select for diffs
Thu Feb 22 21:04:24 2024 UTC (9 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.34: preferred, colored
Changes since revision 1.34: +11 -9
lines
snprintb: always null-terminate output
Always null-terminate the output in the buffer, even in error cases. The
wording in the manual page has been promising this since 2008. For
snprintb_m, ensure that the output is terminated with two null
characters, to gracefully handle situations in which the caller does not
check whether snprintb returned an error.
If the buffer size is zero, allow the buffer to be a null pointer,
analogous to snprintf.
Fix an out-of-bounds memory read if the bitfmt ends with a '*' directive
(since today).
In the tests, merge the helper functions for snprintb, snprintb_m, as
they were similar enough.
Fix a few 'line_max exceeded' tests, ensuring that they output a '#'
marker, and that the 'complete' tests don't.
Revision 1.34: download - view: text, markup, annotated - select for diffs
Thu Feb 22 18:26:16 2024 UTC (9 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.33: preferred, colored
Changes since revision 1.33: +6 -3
lines
snprintb: error out on out-of-bounds bit shifts
Previously, these invoked undefined behavior, now they lead to an early
return. An example of out-of-bounds bit number is in SCZ_PCICTRL_BITS.
Bit fields that extend beyond the msb are still allowed.
Allow 'f' and 'F' to have fields that are 64 bits wide. This only makes
sense when the field starts at bit 0.
Remove the unused 'val_len', it was only needed before snprintb.c 1.20.
Revision 1.33: download - view: text, markup, annotated - select for diffs
Tue Feb 20 20:38:54 2024 UTC (9 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.32: preferred, colored
Changes since revision 1.32: +5 -5
lines
snprintb.3: sync examples with reality
Revision 1.32: download - view: text, markup, annotated - select for diffs
Sun Feb 18 16:55:02 2024 UTC (9 months, 3 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.31: preferred, colored
Changes since revision 1.31: +4 -4
lines
mman.h: fix snprintb description for alignment 2^60
Revision 1.31: download - view: text, markup, annotated - select for diffs
Thu Feb 15 22:48:58 2024 UTC (9 months, 3 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.30: preferred, colored
Changes since revision 1.30: +11 -11
lines
snprintb: rename buflen to bufsize, following the wording in snprintf
Revision 1.30: download - view: text, markup, annotated - select for diffs
Thu Feb 1 22:18:34 2024 UTC (10 months, 1 week ago) by rillig
Branches: MAIN
Diff to: previous 1.29: preferred, colored
Changes since revision 1.29: +42 -28
lines
snprintb.3: fix examples, clean up wording
In the examples using hex escape sequences, there must be a delimiter
between the escape sequence and the following description if the
description starts with [A-Fa-f], as hex escape sequences are not
limited in length.
Distinguish between a 'directive' (bit + length + description) and a
'description' (only the text).
The fmt parameter is not a string, as strings only reach to the first
'\0' byte, but the new-style format may include additional '\0' as bit
numbers.
Revision 1.29: download - view: text, markup, annotated - select for diffs
Mon Jan 22 00:11:21 2024 UTC (10 months, 2 weeks ago) by uwe
Branches: MAIN
Diff to: previous 1.28: preferred, colored
Changes since revision 1.28: +15 -14
lines
snprintb(3): restore empty string in snprintb_m example
Restore the empty string at the end of snprintb_m output that was
accidentally removed along with empty string placeholders in the
format strings. While here, move that example to be next to its
snprintb counterpart.
Revision 1.28: download - view: text, markup, annotated - select for diffs
Sun Jan 21 23:57:49 2024 UTC (10 months, 2 weeks ago) by uwe
Branches: MAIN
Diff to: previous 1.27: preferred, colored
Changes since revision 1.27: +54 -45
lines
snprintb(3): update mmap example
Bring over the prettier version of the mmap format string that we have
in the header file for some time now. Clarify that the final NUL of
the new format string is supplied by the compiler, g/c explicit final
\0 from the example that had it.
Revision 1.27: download - view: text, markup, annotated - select for diffs
Sun Jan 21 23:44:30 2024 UTC (10 months, 2 weeks ago) by uwe
Branches: MAIN
Diff to: previous 1.26: preferred, colored
Changes since revision 1.26: +119 -86
lines
snprintb(3): try to improve narration
Try to make the narration more coherent. Make the old and new
syntaxes easy to distinguish and go out of our way to highlight that
the old syntax uses 1-based bit positions.
Revision 1.26: download - view: text, markup, annotated - select for diffs
Sun Jan 21 22:06:46 2024 UTC (10 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.25: preferred, colored
Changes since revision 1.25: +3 -4
lines
snprintb.3: remove empty string literals from examples
Suggested by uwe@, as gaps in bitmasks are quite common and thus
shouldn't clutter the code.
Revision 1.25: download - view: text, markup, annotated - select for diffs
Sun Jan 21 21:31:23 2024 UTC (10 months, 2 weeks ago) by rillig
Branches: MAIN
Diff to: previous 1.24: preferred, colored
Changes since revision 1.24: +23 -16
lines
snprintb.3: fix examples
The first example broke the format string at boundaries that didn't
highlight the structure of the format string and also didn't make it
clear that a few bits were omitted from having descriptions.
The second example contained an off-by-one error for SIXTEEN, which was
actually FIFTEEN.
The snprintb_m example repeated the above off-by-one error, and its
output was shown wrong, due to concatenated escape sequences.
Revision 1.24: download - view: text, markup, annotated - select for diffs
Thu Jul 30 21:23:36 2020 UTC (4 years, 4 months ago) by uwe
Branches: MAIN
CVS tags: netbsd-10-base,
netbsd-10-0-RELEASE,
netbsd-10-0-RC6,
netbsd-10-0-RC5,
netbsd-10-0-RC4,
netbsd-10-0-RC3,
netbsd-10-0-RC2,
netbsd-10-0-RC1,
netbsd-10,
cjep_sun2x-base1,
cjep_sun2x-base,
cjep_sun2x,
cjep_staticlib_x-base1,
cjep_staticlib_x-base,
cjep_staticlib_x
Diff to: previous 1.23: preferred, colored
Changes since revision 1.23: +2 -2
lines
Fix grammar.
Revision 1.17.4.2: download - view: text, markup, annotated - select for diffs
Wed Apr 8 14:07:16 2020 UTC (4 years, 8 months ago) by martin
Branches: phil-wifi
Diff to: previous 1.17.4.1: preferred, colored; branchpoint 1.17: preferred, colored; next MAIN 1.18: preferred, colored
Changes since revision 1.17.4.1: +7 -5
lines
Merge changes from current as of 20200406
Revision 1.23: download - view: text, markup, annotated - select for diffs
Sat Dec 7 12:47:07 2019 UTC (5 years ago) by wiz
Branches: MAIN
CVS tags: phil-wifi-20200421,
phil-wifi-20200411,
phil-wifi-20200406,
is-mlppp-base,
is-mlppp
Diff to: previous 1.22: preferred, colored
Changes since revision 1.22: +2 -2
lines
Remove trailing whitespace.
Revision 1.22: download - view: text, markup, annotated - select for diffs
Fri Dec 6 19:31:52 2019 UTC (5 years ago) by christos
Branches: MAIN
Diff to: previous 1.21: preferred, colored
Changes since revision 1.21: +7 -5
lines
Correct the man page, and say that the printf(3) format characters need
to be uintmax_t.
Revision 1.17.4.1: download - view: text, markup, annotated - select for diffs
Mon Jun 10 22:05:27 2019 UTC (5 years, 6 months ago) by christos
Branches: phil-wifi
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +71 -2
lines
Sync with HEAD
Revision 1.21: download - view: text, markup, annotated - select for diffs
Mon Apr 29 07:55:38 2019 UTC (5 years, 7 months ago) by kre
Branches: MAIN
CVS tags: phil-wifi-20191119,
phil-wifi-20190609,
netbsd-9-base,
netbsd-9-4-RELEASE,
netbsd-9-3-RELEASE,
netbsd-9-2-RELEASE,
netbsd-9-1-RELEASE,
netbsd-9-0-RELEASE,
netbsd-9-0-RC2,
netbsd-9-0-RC1,
netbsd-9
Diff to: previous 1.20: preferred, colored
Changes since revision 1.20: +3 -3
lines
snprintb(3) says that, in the new(?) Torek format, all fields specs end with \0
The F spec is one of those, it should be terminated with \0 just like all
the others (irrelevant that it has no extra data to delimit).
Fix <sys/mman.h> to define the snprintb() format string correctly (include
the missing \0's). Fix the copy of that definition included into
snprintb(3) to match the updated mman.h version (ride the date bump
from the day before yesterday .. this is the same change, just corrected).
Undo the previous snprintb.c change ("off by one" fix) which was an
attempt to make the broken mman.h usage work (and did, but not the way
it should be done). Also, after using the new * format (instead of only
when something has already matched) skip the associated data so we don't
attempt to interpret it as more field specifiers. This func needs lots of TLC!
Fix the ATF tests for snprintb() to not assume that F format is really
exactly like f format, and has data after the field specifier. It doesn't.
Add several more tests (including testing the '*' field operator
recently added).
Revision 1.20: download - view: text, markup, annotated - select for diffs
Sat Apr 27 17:58:51 2019 UTC (5 years, 7 months ago) by wiz
Branches: MAIN
Diff to: previous 1.19: preferred, colored
Changes since revision 1.19: +2 -2
lines
Remove trailing whitespace.
Revision 1.19: download - view: text, markup, annotated - select for diffs
Sat Apr 27 17:48:13 2019 UTC (5 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.18: preferred, colored
Changes since revision 1.18: +1 -2
lines
remove dup line
Revision 1.18: download - view: text, markup, annotated - select for diffs
Sat Apr 27 17:46:08 2019 UTC (5 years, 7 months ago) by christos
Branches: MAIN
Diff to: previous 1.17: preferred, colored
Changes since revision 1.17: +72 -2
lines
Document the '*' field and give a more complex example with F and *.
Revision 1.17: download - view: text, markup, annotated - select for diffs
Sun Oct 22 16:59:18 2017 UTC (7 years, 1 month ago) by abhinav
Branches: MAIN
CVS tags: phil-wifi-base,
pgoyette-compat-merge-20190127,
pgoyette-compat-base,
pgoyette-compat-20190127,
pgoyette-compat-20190118,
pgoyette-compat-1226,
pgoyette-compat-1126,
pgoyette-compat-1020,
pgoyette-compat-0930,
pgoyette-compat-0906,
pgoyette-compat-0728,
pgoyette-compat-0625,
pgoyette-compat-0521,
pgoyette-compat-0502,
pgoyette-compat-0422,
pgoyette-compat-0415,
pgoyette-compat-0407,
pgoyette-compat-0330,
pgoyette-compat-0322,
pgoyette-compat-0315,
pgoyette-compat
Branch point for: phil-wifi
Diff to: previous 1.16: preferred, colored
Changes since revision 1.16: +3 -2
lines
Add snprintb_m to the NAME section.
Revision 1.14.12.1: download - view: text, markup, annotated - select for diffs
Wed Aug 20 00:02:21 2014 UTC (10 years, 3 months ago) by tls
Branches: tls-maxphys
Diff to: previous 1.14: preferred, colored; next MAIN 1.15: preferred, colored
Changes since revision 1.14: +17 -7
lines
Rebase to HEAD as of a few days ago.
Revision 1.14.6.1: download - view: text, markup, annotated - select for diffs
Thu May 22 11:37:00 2014 UTC (10 years, 6 months ago) by yamt
Branches: yamt-pagecache
Diff to: previous 1.14: preferred, colored; next MAIN 1.15: preferred, colored
Changes since revision 1.14: +17 -7
lines
sync with head.
for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.
this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
Revision 1.16: download - view: text, markup, annotated - select for diffs
Wed Aug 7 23:22:28 2013 UTC (11 years, 4 months ago) by pgoyette
Branches: MAIN
CVS tags: yamt-pagecache-base9,
tls-maxphys-base,
tls-earlyentropy-base,
tls-earlyentropy,
riastradh-xf86-video-intel-2-7-1-pre-2-21-15,
riastradh-drm2-base3,
prg-localcount2-base3,
prg-localcount2-base2,
prg-localcount2-base1,
prg-localcount2-base,
prg-localcount2,
pgoyette-localcount-base,
pgoyette-localcount-20170426,
pgoyette-localcount-20170320,
pgoyette-localcount-20170107,
pgoyette-localcount-20161104,
pgoyette-localcount-20160806,
pgoyette-localcount-20160726,
pgoyette-localcount,
perseant-stdc-iso10646-base,
perseant-stdc-iso10646,
netbsd-8-base,
netbsd-8-3-RELEASE,
netbsd-8-2-RELEASE,
netbsd-8-1-RELEASE,
netbsd-8-1-RC1,
netbsd-8-0-RELEASE,
netbsd-8-0-RC2,
netbsd-8-0-RC1,
netbsd-8,
netbsd-7-nhusb-base-20170116,
netbsd-7-nhusb-base,
netbsd-7-nhusb,
netbsd-7-base,
netbsd-7-2-RELEASE,
netbsd-7-1-RELEASE,
netbsd-7-1-RC2,
netbsd-7-1-RC1,
netbsd-7-1-2-RELEASE,
netbsd-7-1-1-RELEASE,
netbsd-7-1,
netbsd-7-0-RELEASE,
netbsd-7-0-RC3,
netbsd-7-0-RC2,
netbsd-7-0-RC1,
netbsd-7-0-2-RELEASE,
netbsd-7-0-1-RELEASE,
netbsd-7-0,
netbsd-7,
matt-nb8-mediatek-base,
matt-nb8-mediatek,
localcount-20160914,
bouyer-socketcan-base1,
bouyer-socketcan-base,
bouyer-socketcan
Diff to: previous 1.15: preferred, colored
Changes since revision 1.15: +4 -4
lines
Update example using hex-escape-sequences to conform to gcc parsing rules.
(See http://gcc.gnu.org/bugzilla/show_bug.cgi?id=33167 for details.)
Revision 1.15: download - view: text, markup, annotated - select for diffs
Wed Aug 7 22:51:59 2013 UTC (11 years, 4 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.14: preferred, colored
Changes since revision 1.14: +14 -4
lines
Add an example using snprintb_m()
Replace \*[Gt] and \*[Lt] with the simple characters > and < (OK wiz)
XXX Note that the examples currently do not compile with GCC! The hex
XXX character sequences such as \x10CACHE are being parsed as longer
XXX than 2-hex-digit strings!
Revision 1.11.4.1: download - view: text, markup, annotated - select for diffs
Wed May 13 19:18:37 2009 UTC (15 years, 7 months ago) by jym
Branches: jym-xensuspend
Diff to: previous 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11: +47 -11
lines
Sync with HEAD.
Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
Revision 1.14: download - view: text, markup, annotated - select for diffs
Wed May 13 02:50:32 2009 UTC (15 years, 7 months ago) by pgoyette
Branches: MAIN
CVS tags: yamt-pagecache-tag8,
yamt-pagecache-base8,
yamt-pagecache-base7,
yamt-pagecache-base6,
yamt-pagecache-base5,
yamt-pagecache-base4,
yamt-pagecache-base3,
yamt-pagecache-base2,
yamt-pagecache-base,
riastradh-drm2-base2,
riastradh-drm2-base1,
riastradh-drm2-base,
riastradh-drm2,
netbsd-6-base,
netbsd-6-1-RELEASE,
netbsd-6-1-RC4,
netbsd-6-1-RC3,
netbsd-6-1-RC2,
netbsd-6-1-RC1,
netbsd-6-1-5-RELEASE,
netbsd-6-1-4-RELEASE,
netbsd-6-1-3-RELEASE,
netbsd-6-1-2-RELEASE,
netbsd-6-1-1-RELEASE,
netbsd-6-1,
netbsd-6-0-RELEASE,
netbsd-6-0-RC2,
netbsd-6-0-RC1,
netbsd-6-0-6-RELEASE,
netbsd-6-0-5-RELEASE,
netbsd-6-0-4-RELEASE,
netbsd-6-0-3-RELEASE,
netbsd-6-0-2-RELEASE,
netbsd-6-0-1-RELEASE,
netbsd-6-0,
netbsd-6,
matt-premerge-20091211,
matt-nb6-plus-nbase,
matt-nb6-plus-base,
matt-nb6-plus,
matt-mips64-premerge-20101231,
jym-xensuspend-nbase,
jym-xensuspend-base,
cherry-xenmp-base,
cherry-xenmp,
bouyer-quota2-nbase,
bouyer-quota2-base,
bouyer-quota2,
agc-symver-base,
agc-symver
Branch point for: yamt-pagecache,
tls-maxphys
Diff to: previous 1.13: preferred, colored
Changes since revision 1.13: +40 -6
lines
Implement snprintb_m(3) to provide multi-line bit/bit-field decode.
Discussed on tech-kern.
Revision 1.13: download - view: text, markup, annotated - select for diffs
Tue May 5 13:12:25 2009 UTC (15 years, 7 months ago) by pgoyette
Branches: MAIN
Diff to: previous 1.12: preferred, colored
Changes since revision 1.12: +3 -3
lines
Update type of argument 4 from u_quad_t to uint64_t to match the actual
implementation.
Revision 1.12: download - view: text, markup, annotated - select for diffs
Thu Mar 26 05:00:10 2009 UTC (15 years, 8 months ago) by uebayasi
Branches: MAIN
Diff to: previous 1.11: preferred, colored
Changes since revision 1.11: +9 -7
lines
Correct the order of arguments in EXAMPLE. Bump date.
Revision 1.11.2.2: download - view: text, markup, annotated - select for diffs
Tue Dec 23 21:46:14 2008 UTC (15 years, 11 months ago) by wiz
Branches: christos-time_t
Diff to: previous 1.11.2.1: preferred, colored; branchpoint 1.11: preferred, colored; next MAIN 1.12: preferred, colored
Changes since revision 1.11.2.1: +243 -0
lines
Fix deleto in previous.
Revision 1.11.2.1
Tue Dec 23 21:46:13 2008 UTC (15 years, 11 months ago) by wiz
Branches: christos-time_t
FILE REMOVED
Changes since revision 1.11: +0 -243
lines
file snprintb.3 was added on branch christos-time_t on 2008-12-23 21:46:14 +0000
Revision 1.11: download - view: text, markup, annotated - select for diffs
Tue Dec 23 21:46:13 2008 UTC (15 years, 11 months ago) by wiz
Branches: MAIN
CVS tags: christos-time_t-base
Branch point for: jym-xensuspend,
christos-time_t
Diff to: previous 1.10: preferred, colored
Changes since revision 1.10: +2 -2
lines
Fix deleto in previous.
Revision 1.10: download - view: text, markup, annotated - select for diffs
Tue Dec 23 20:53:31 2008 UTC (15 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.9: preferred, colored
Changes since revision 1.9: +8 -10
lines
fix argument order in example.
Revision 1.9: download - view: text, markup, annotated - select for diffs
Wed Dec 17 14:05:23 2008 UTC (15 years, 11 months ago) by wiz
Branches: MAIN
Diff to: previous 1.8: preferred, colored
Changes since revision 1.8: +3 -1
lines
Re-add LIBRARY section.
Revision 1.8: download - view: text, markup, annotated - select for diffs
Wed Dec 17 10:39:22 2008 UTC (15 years, 11 months ago) by wiz
Branches: MAIN
Diff to: previous 1.7: preferred, colored
Changes since revision 1.7: +4 -5
lines
Fix some minor mdoclint complaints.
Revision 1.7: download - view: text, markup, annotated - select for diffs
Tue Dec 16 23:19:16 2008 UTC (15 years, 11 months ago) by christos
Branches: MAIN
Diff to: previous 1.6: preferred, colored
Changes since revision 1.6: +138 -37
lines
use the bitmask_snprintf info which is more complete, and adjust it for
reality.
Revision 1.5.24.1: download - view: text, markup, annotated - select for diffs
Sun May 18 12:30:43 2008 UTC (16 years, 6 months ago) by yamt
Branches: yamt-pf42
Diff to: previous 1.5: preferred, colored; next MAIN 1.6: preferred, colored
Changes since revision 1.5: +1 -8
lines
sync with head.
Revision 1.6: download - view: text, markup, annotated - select for diffs
Wed Apr 30 13:10:52 2008 UTC (16 years, 7 months ago) by martin
Branches: MAIN
CVS tags: yamt-pf42-base4,
yamt-pf42-base3,
yamt-pf42-base2,
wrstuden-revivesa-base-3,
wrstuden-revivesa-base-2,
wrstuden-revivesa-base-1,
wrstuden-revivesa-base,
wrstuden-revivesa,
netbsd-5-base,
netbsd-5-2-RELEASE,
netbsd-5-2-RC1,
netbsd-5-2-3-RELEASE,
netbsd-5-2-2-RELEASE,
netbsd-5-2-1-RELEASE,
netbsd-5-2,
netbsd-5-1-RELEASE,
netbsd-5-1-RC4,
netbsd-5-1-RC3,
netbsd-5-1-RC2,
netbsd-5-1-RC1,
netbsd-5-1-5-RELEASE,
netbsd-5-1-4-RELEASE,
netbsd-5-1-3-RELEASE,
netbsd-5-1-2-RELEASE,
netbsd-5-1-1-RELEASE,
netbsd-5-1,
netbsd-5-0-RELEASE,
netbsd-5-0-RC4,
netbsd-5-0-RC3,
netbsd-5-0-RC2,
netbsd-5-0-RC1,
netbsd-5-0-2-RELEASE,
netbsd-5-0-1-RELEASE,
netbsd-5-0,
netbsd-5,
matt-nb5-pq3-base,
matt-nb5-pq3,
matt-nb5-mips64-u2-k2-k4-k7-k8-k9,
matt-nb5-mips64-u1-k1-k5,
matt-nb5-mips64-premerge-20101231,
matt-nb5-mips64-premerge-20091211,
matt-nb5-mips64-k15,
matt-nb5-mips64,
matt-nb4-mips64-k7-u2a-k9b,
matt-mips64-base2,
hpcarm-cleanup-nbase
Diff to: previous 1.5: preferred, colored
Changes since revision 1.5: +1 -8
lines
Convert TNF licenses to new 2 clause variant
Revision 1.5: download - view: text, markup, annotated - select for diffs
Wed Dec 1 00:06:46 2004 UTC (20 years ago) by peter
Branches: MAIN
CVS tags: yamt-pf42-baseX,
yamt-pf42-base,
wrstuden-fixsa-newbase,
wrstuden-fixsa-base-1,
wrstuden-fixsa-base,
wrstuden-fixsa,
netbsd-4-base,
netbsd-4-0-RELEASE,
netbsd-4-0-RC5,
netbsd-4-0-RC4,
netbsd-4-0-RC3,
netbsd-4-0-RC2,
netbsd-4-0-RC1,
netbsd-4-0-1-RELEASE,
netbsd-4-0,
netbsd-4,
netbsd-3-base,
netbsd-3-1-RELEASE,
netbsd-3-1-RC4,
netbsd-3-1-RC3,
netbsd-3-1-RC2,
netbsd-3-1-RC1,
netbsd-3-1-1-RELEASE,
netbsd-3-1,
netbsd-3-0-RELEASE,
netbsd-3-0-RC6,
netbsd-3-0-RC5,
netbsd-3-0-RC4,
netbsd-3-0-RC3,
netbsd-3-0-RC2,
netbsd-3-0-RC1,
netbsd-3-0-3-RELEASE,
netbsd-3-0-2-RELEASE,
netbsd-3-0-1-RELEASE,
netbsd-3-0,
netbsd-3,
matt-mips64-base,
matt-mips64,
matt-armv6-prevmlocking,
matt-armv6-nbase,
matt-armv6-base,
matt-armv6,
keiichi-mipv6-base,
keiichi-mipv6,
hpcarm-cleanup-base,
hpcarm-cleanup,
cube-autoconf-base,
cube-autoconf,
abandoned-netbsd-4-base,
abandoned-netbsd-4
Branch point for: yamt-pf42
Diff to: previous 1.4: preferred, colored
Changes since revision 1.4: +3 -1
lines
Add missing LIBRARY section.
ok wiz@
Revision 1.4: download - view: text, markup, annotated - select for diffs
Sun Nov 21 03:04:14 2004 UTC (20 years ago) by christos
Branches: MAIN
Diff to: previous 1.3: preferred, colored
Changes since revision 1.3: +2 -2
lines
fix the header.
Revision 1.3: download - view: text, markup, annotated - select for diffs
Wed Apr 16 13:35:15 2003 UTC (21 years, 8 months ago) by wiz
Branches: MAIN
CVS tags: netbsd-2-base,
netbsd-2-1-RELEASE,
netbsd-2-1-RC6,
netbsd-2-1-RC5,
netbsd-2-1-RC4,
netbsd-2-1-RC3,
netbsd-2-1-RC2,
netbsd-2-1-RC1,
netbsd-2-1,
netbsd-2-0-base,
netbsd-2-0-RELEASE,
netbsd-2-0-RC5,
netbsd-2-0-RC4,
netbsd-2-0-RC3,
netbsd-2-0-RC2,
netbsd-2-0-RC1,
netbsd-2-0-3-RELEASE,
netbsd-2-0-2-RELEASE,
netbsd-2-0-1-RELEASE,
netbsd-2-0,
netbsd-2
Diff to: previous 1.2: preferred, colored
Changes since revision 1.2: +2 -2
lines
Use
.In header.h
instead of
.Fd #include \*[Lt]header.h\*[Gt]
Much easier to read and write, and supported by groff for ages.
Okayed by ross.
Revision 1.2: download - view: text, markup, annotated - select for diffs
Tue Oct 1 19:36:30 2002 UTC (22 years, 2 months ago) by wiz
Branches: MAIN
CVS tags: fvdl_fs64_base
Diff to: previous 1.1: preferred, colored
Changes since revision 1.1: +4 -3
lines
New sentence, new line. From Robert Elz.
Revision 1.1: download - view: text, markup, annotated - select for diffs
Fri Sep 20 21:10:10 2002 UTC (22 years, 2 months ago) by christos
Branches: MAIN
Add snprintb(3) inspired from bitmask_snprintf(9), but made to look like
more like snprintf(3). Discussed with thorpej.
CVSweb <webmaster@jp.NetBSD.org>