diff options
author | schwarze <> | 2017-09-02 13:56:44 +0000 |
---|---|---|
committer | schwarze <> | 2017-09-02 13:56:44 +0000 |
commit | acb50b384a345af5c252cecb7b199227f056184f (patch) | |
tree | 4e08fcffa948f744f48269948b971100d4e8176a | |
parent | 12e94accd8e6a0c46a45dce308c071d8d2820c8b (diff) | |
download | openbsd-acb50b384a345af5c252cecb7b199227f056184f.tar.gz openbsd-acb50b384a345af5c252cecb7b199227f056184f.tar.bz2 openbsd-acb50b384a345af5c252cecb7b199227f056184f.zip |
delete pointless .Tn ASCII found by jca@ with mandoc -Tlint
-rw-r--r-- | src/lib/libc/string/strtok.3 | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/lib/libc/string/strtok.3 b/src/lib/libc/string/strtok.3 index ae7423661a..0f1f359ec4 100644 --- a/src/lib/libc/string/strtok.3 +++ b/src/lib/libc/string/strtok.3 | |||
@@ -1,4 +1,4 @@ | |||
1 | .\" $OpenBSD: strtok.3,v 1.22 2017/08/31 10:57:47 jca Exp $ | 1 | .\" $OpenBSD: strtok.3,v 1.23 2017/09/02 13:56:44 schwarze Exp $ |
2 | .\" | 2 | .\" |
3 | .\" Copyright (c) 1988, 1991 The Regents of the University of California. | 3 | .\" Copyright (c) 1988, 1991 The Regents of the University of California. |
4 | .\" All rights reserved. | 4 | .\" All rights reserved. |
@@ -31,7 +31,7 @@ | |||
31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF | 31 | .\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
32 | .\" SUCH DAMAGE. | 32 | .\" SUCH DAMAGE. |
33 | .\" | 33 | .\" |
34 | .Dd $Mdocdate: August 31 2017 $ | 34 | .Dd $Mdocdate: September 2 2017 $ |
35 | .Dt STRTOK 3 | 35 | .Dt STRTOK 3 |
36 | .Os | 36 | .Os |
37 | .Sh NAME | 37 | .Sh NAME |
@@ -86,9 +86,8 @@ The | |||
86 | and | 86 | and |
87 | .Fn strtok_r | 87 | .Fn strtok_r |
88 | functions return a pointer to the beginning of each subsequent token | 88 | functions return a pointer to the beginning of each subsequent token |
89 | in the string, after replacing the separator character itself with an | 89 | in the string, after replacing the separator character itself with |
90 | .Tn ASCII NUL | 90 | a NUL character. |
91 | character. | ||
92 | When no more tokens remain, a null pointer is returned. | 91 | When no more tokens remain, a null pointer is returned. |
93 | .Sh EXAMPLES | 92 | .Sh EXAMPLES |
94 | The following will construct an array of pointers to each individual word in | 93 | The following will construct an array of pointers to each individual word in |