diff options
author | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-20 03:08:25 +0000 |
---|---|---|
committer | Thorsten Lockert <tholo@cvs.openbsd.org> | 1996-09-20 03:08:25 +0000 |
commit | 4271ab2a6ab2d97286cf86dba3cdcb51705707ea (patch) | |
tree | d1f365d7606818ea1dd5e1f167e4f42cb99afd6b /lib | |
parent | 2cd576867c57e32739c90b627332e6af0e720130 (diff) |
From NetBSD PR 2751 from der Mouse <mouse@Rodents.Montreal.QC.CA>:
fwopen() argument type mis-described
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libc/stdio/funopen.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdio/funopen.3 b/lib/libc/stdio/funopen.3 index 856aba6864e..4e9198abfbd 100644 --- a/lib/libc/stdio/funopen.3 +++ b/lib/libc/stdio/funopen.3 @@ -1,4 +1,4 @@ -.\" $OpenBSD: funopen.3,v 1.3 1996/08/19 08:32:48 tholo Exp $ +.\" $OpenBSD: funopen.3,v 1.4 1996/09/20 03:08:24 tholo Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -48,7 +48,7 @@ .Ft FILE * .Fn fropen "void *cookie" "int (*readfn)(void *, char *, int)" .Ft FILE * -.Fn fwopen "void *cookie" "int (*writefn)(void *, char *, int)" +.Fn fwopen "void *cookie" "int (*writefn)(void *, const char *, int)" .Sh DESCRIPTION The .Fn funopen |