summaryrefslogtreecommitdiff
path: root/lib/libc/gen
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2014-11-09 04:34:21 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2014-11-09 04:34:21 +0000
commitfa7b3c36fee09441e1b60df20e524834c5825785 (patch)
tree02e005337508709447024c56e966fb8a78326742 /lib/libc/gen
parent5f1d2f1b4a524c4f7d62695e3882c28a9a08d68b (diff)
Correct constness of str*unvis()'s second (source) argument
Diffstat (limited to 'lib/libc/gen')
-rw-r--r--lib/libc/gen/unvis.38
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/libc/gen/unvis.3 b/lib/libc/gen/unvis.3
index e7d80fc5e74..11ea34f8074 100644
--- a/lib/libc/gen/unvis.3
+++ b/lib/libc/gen/unvis.3
@@ -1,4 +1,4 @@
-.\" $OpenBSD: unvis.3,v 1.17 2013/06/05 03:39:22 tedu Exp $
+.\" $OpenBSD: unvis.3,v 1.18 2014/11/09 04:34:20 guenther Exp $
.\"
.\" Copyright (c) 1989, 1991, 1993
.\" The Regents of the University of California. All rights reserved.
@@ -27,7 +27,7 @@
.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
.\" SUCH DAMAGE.
.\"
-.Dd $Mdocdate: June 5 2013 $
+.Dd $Mdocdate: November 9 2014 $
.Dt UNVIS 3
.Os
.Sh NAME
@@ -40,9 +40,9 @@
.Ft int
.Fn unvis "char *cp" "char c" "int *astate" "int flag"
.Ft int
-.Fn strunvis "char *dst" "char *src"
+.Fn strunvis "char *dst" "const char *src"
.Ft ssize_t
-.Fn strnunvis "char *dst" "char *src" "size_t size"
+.Fn strnunvis "char *dst" "const char *src" "size_t size"
.Sh DESCRIPTION
The
.Fn unvis ,