summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason McIntyre <jmc@cvs.openbsd.org>2005-08-07 10:22:22 +0000
committerJason McIntyre <jmc@cvs.openbsd.org>2005-08-07 10:22:22 +0000
commitafe87f62521fda6b6b6641b50dc7d61f05847c3a (patch)
tree5b6c2eff8fc565176137e1636b5d56ed55a25ef9
parent5a1d4226ecbc530f61276ecc41216ad73e701326 (diff)
move non-standard COMPATIBILITY section to HISTORY, which seems more
relevant anyway; ok jaredy@
-rw-r--r--lib/libc/string/wcstok.320
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/libc/string/wcstok.3 b/lib/libc/string/wcstok.3
index 28291888f5a..fef27544740 100644
--- a/lib/libc/string/wcstok.3
+++ b/lib/libc/string/wcstok.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: wcstok.3,v 1.3 2005/08/06 03:21:36 jaredy Exp $
+.\" $OpenBSD: wcstok.3,v 1.4 2005/08/07 10:22:21 jmc Exp $
.\"
.\" $NetBSD: wcstok.3,v 1.3 2003/09/08 17:54:33 wiz Exp $
.\"
@@ -112,15 +112,6 @@ for (tok = wcstok(text, seps, &last); tok != NULL;
tok = wcstok(NULL, seps, &last))
wprintf(L"%ls\en", tok);
.Ed
-.Sh COMPATIBILITY
-Some early implementations of
-.Fn wcstok
-omit the
-context pointer argument,
-.Fa last ,
-and maintain state across calls in a static variable like
-.Fn strtok
-does.
.Sh SEE ALSO
.Xr strtok 3 ,
.Xr wcschr 3 ,
@@ -134,3 +125,12 @@ The
function
conforms to
.St -isoC-99 .
+.Sh HISTORY
+Some early implementations of
+.Fn wcstok
+omit the
+context pointer argument,
+.Fa last ,
+and maintain state across calls in a static variable like
+.Fn strtok
+does.