diff options
author | jmc <> | 2011-08-30 12:25:09 +0000 |
---|---|---|
committer | jmc <> | 2011-08-30 12:25:09 +0000 |
commit | a06477a41bb324cebddcb763e8bd35687bfaf54c (patch) | |
tree | bd6e85049f72d16b40614a2d8569f19d0d086c9e /src | |
parent | 0ec1e9d8f3e6f5f5e6ce75b21ea45e7d6aa64690 (diff) | |
download | openbsd-a06477a41bb324cebddcb763e8bd35687bfaf54c.tar.gz openbsd-a06477a41bb324cebddcb763e8bd35687bfaf54c.tar.bz2 openbsd-a06477a41bb324cebddcb763e8bd35687bfaf54c.zip |
in column lists, enforce the following ordering:
.Bl -column header1 header2 ... <Bl flags>
mixing things up confuses mandoc, and adding flags in can screw up the list.
this hopefully just makes things a bit safer (and more consistent).
(one more bit of work left and all column lists should format how we want)
Diffstat (limited to 'src')
-rw-r--r-- | src/lib/libc/stdlib/strtol.3 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/libc/stdlib/strtol.3 b/src/lib/libc/stdlib/strtol.3 index 84d9a0c427..1a28ead0ce 100644 --- a/src/lib/libc/stdlib/strtol.3 +++ b/src/lib/libc/stdlib/strtol.3 | |||
@@ -29,9 +29,9 @@ | |||
29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 29 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
30 | .\" SUCH DAMAGE. | 30 | .\" SUCH DAMAGE. |
31 | .\" | 31 | .\" |
32 | .\" $OpenBSD: strtol.3,v 1.19 2007/11/13 18:30:04 tobias Exp $ | 32 | .\" $OpenBSD: strtol.3,v 1.20 2011/08/30 12:25:09 jmc Exp $ |
33 | .\" | 33 | .\" |
34 | .Dd $Mdocdate: November 13 2007 $ | 34 | .Dd $Mdocdate: August 30 2011 $ |
35 | .Dt STRTOL 3 | 35 | .Dt STRTOL 3 |
36 | .Os | 36 | .Os |
37 | .Sh NAME | 37 | .Sh NAME |
@@ -164,7 +164,7 @@ If overflow or underflow occurs, | |||
164 | is set to | 164 | is set to |
165 | .Er ERANGE | 165 | .Er ERANGE |
166 | and the function return value is as follows: | 166 | and the function return value is as follows: |
167 | .Bl -column -offset indent "strtoimax" "overflow" "underflow" | 167 | .Bl -column "strtoimax" "overflow" "underflow" -offset indent |
168 | .It Sy Function Ta Sy underflow Ta Sy overflow | 168 | .It Sy Function Ta Sy underflow Ta Sy overflow |
169 | .It Fn strtol Ta Dv LONG_MIN Ta Dv LONG_MAX | 169 | .It Fn strtol Ta Dv LONG_MIN Ta Dv LONG_MAX |
170 | .It Fn strtoll Ta Dv LLONG_MIN Ta Dv LLONG_MAX | 170 | .It Fn strtoll Ta Dv LLONG_MIN Ta Dv LLONG_MAX |