diff options
author | 1996-01-29 01:56:44 +0000 | |
---|---|---|
committer | 1996-01-29 01:56:44 +0000 | |
commit | 29b4484883798fa9e8eb1ea2128c1fc6f201d788 (patch) | |
tree | c5dd3dc4cc413b38c1d0fa42737f100e16d43d54 | |
parent | from netbsd; warnx called incorrectly (diff) | |
download | wireguard-openbsd-29b4484883798fa9e8eb1ea2128c1fc6f201d788.tar.xz wireguard-openbsd-29b4484883798fa9e8eb1ea2128c1fc6f201d788.zip |
typo; fix from norijuki soda; netbsd pr#1954
-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 465b16ea5f4..2e6277825a3 100644 --- a/lib/libc/stdio/funopen.3 +++ b/lib/libc/stdio/funopen.3 @@ -1,4 +1,4 @@ -.\" $NetBSD: funopen.3,v 1.4 1995/02/02 01:15:44 jtc Exp $ +.\" $NetBSD: funopen.3,v 1.5 1996/01/17 01:42:55 jtc Exp $ .\" .\" Copyright (c) 1990, 1991, 1993 .\" The Regents of the University of California. All rights reserved. @@ -46,7 +46,7 @@ .Sh SYNOPSIS .Fd #include <stdio.h> .Ft FILE * -.Fn funopen "void *cookie" "int (*readfn)(void *, char *, int)" "int (writefn*)(void *, const char *, int)" "fpos_t (seekfn*)(void *, fpos_t, int)" "int (closefn*)(void *)" +.Fn funopen "void *cookie" "int (*readfn)(void *, char *, int)" "int (*writefn)(void *, const char *, int)" "fpos_t (*seekfn)(void *, fpos_t, int)" "int (*closefn)(void *)" .Ft FILE * .Fn fropen "void *cookie" "int (*readfn)(void *, char *, int)" .Ft FILE * |