Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/lib Kill some extra spaces in function arguments.



details:   https://anonhg.NetBSD.org/src/rev/791a2d3017e0
branches:  trunk
changeset: 781941:791a2d3017e0
user:      njoly <njoly%NetBSD.org@localhost>
date:      Mon Oct 08 18:15:09 2012 +0000

description:
Kill some extra spaces in function arguments.

diffstat:

 lib/libc/gen/directory.3  |   4 ++--
 lib/libc/stdio/fmemopen.3 |   4 ++--
 lib/libc/stdio/funopen.3  |  14 +++++++-------
 lib/libform/form_field.3  |   4 ++--
 lib/libskey/skey.3        |   4 ++--
 5 files changed, 15 insertions(+), 15 deletions(-)

diffs (104 lines):

diff -r 2e293d9f8162 -r 791a2d3017e0 lib/libc/gen/directory.3
--- a/lib/libc/gen/directory.3  Mon Oct 08 18:08:40 2012 +0000
+++ b/lib/libc/gen/directory.3  Mon Oct 08 18:15:09 2012 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: directory.3,v 1.37 2011/10/15 21:35:49 rmind Exp $
+.\"    $NetBSD: directory.3,v 1.38 2012/10/08 18:15:09 njoly Exp $
 .\"
 .\" Copyright (c) 1983, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -58,7 +58,7 @@
 .Ft long
 .Fn telldir "DIR *dirp"
 .Ft void
-.Fn seekdir "DIR *dirp" "long  loc"
+.Fn seekdir "DIR *dirp" "long loc"
 .Ft void
 .Fn rewinddir "DIR *dirp"
 .Ft int
diff -r 2e293d9f8162 -r 791a2d3017e0 lib/libc/stdio/fmemopen.3
--- a/lib/libc/stdio/fmemopen.3 Mon Oct 08 18:08:40 2012 +0000
+++ b/lib/libc/stdio/fmemopen.3 Mon Oct 08 18:15:09 2012 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: fmemopen.3,v 1.6 2011/10/15 21:31:27 rmind Exp $
+.\"    $NetBSD: fmemopen.3,v 1.7 2012/10/08 18:15:09 njoly Exp $
 .\"
 .\" Copyright (c) 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -41,7 +41,7 @@
 .Sh SYNOPSIS
 .In stdio.h
 .Ft FILE *
-.Fn fmemopen "void  *restrict buffer" "size_t size" "const char *restrict mode"
+.Fn fmemopen "void *restrict buffer" "size_t size" "const char *restrict mode"
 .Sh DESCRIPTION
 The
 .Fn fmemopen
diff -r 2e293d9f8162 -r 791a2d3017e0 lib/libc/stdio/funopen.3
--- a/lib/libc/stdio/funopen.3  Mon Oct 08 18:08:40 2012 +0000
+++ b/lib/libc/stdio/funopen.3  Mon Oct 08 18:15:09 2012 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: funopen.3,v 1.21 2012/06/09 22:49:18 njoly Exp $
+.\"    $NetBSD: funopen.3,v 1.22 2012/10/08 18:15:09 njoly Exp $
 .\"
 .\" Copyright (c) 1990, 1991, 1993
 .\"    The Regents of the University of California.  All rights reserved.
@@ -47,16 +47,16 @@
 .Sh SYNOPSIS
 .In stdio.h
 .Ft FILE *
-.Fn funopen "void  *cookie" "int  (*readfn)(void *, char *, int)" "int (*writefn)(void *, const char *, int)" "off_t (*seekfn)(void *, off_t, int)" "int (*closefn)(void *)"
-.Fn funopen2 "void  *cookie" "ssize_t  (*readfn)(void *, void *, size_t)" "ssize_t (*writefn)(void *, const void *, size_t)" "off_t (*seekfn)(void *, off_t, int)" "int (*flushfn)(void *)" "int 
(*closefn)(void *)"
+.Fn funopen "void *cookie" "int (*readfn)(void *, char *, int)" "int (*writefn)(void *, const char *, int)" "off_t (*seekfn)(void *, off_t, int)" "int (*closefn)(void *)"
+.Fn funopen2 "void *cookie" "ssize_t (*readfn)(void *, void *, size_t)" "ssize_t (*writefn)(void *, const void *, size_t)" "off_t (*seekfn)(void *, off_t, int)" "int (*flushfn)(void *)" "int 
(*closefn)(void *)"
 .Ft FILE *
-.Fn fropen "void  *cookie" "int  (*readfn)(void *, char *, int)"
+.Fn fropen "void *cookie" "int (*readfn)(void *, char *, int)"
 .Ft FILE *
-.Fn fropen2 "void  *cookie" "ssize_t  (*readfn)(void *, void *, size_t)"
+.Fn fropen2 "void *cookie" "ssize_t (*readfn)(void *, void *, size_t)"
 .Ft FILE *
-.Fn fwopen "void  *cookie" "int  (*writefn)(void *, const char *, int)"
+.Fn fwopen "void *cookie" "int (*writefn)(void *, const char *, int)"
 .Ft FILE *
-.Fn fwopen2 "void  *cookie" "ssize_t  (*writefn)(void *, const void *, size_t)"
+.Fn fwopen2 "void *cookie" "ssize_t (*writefn)(void *, const void *, size_t)"
 .Sh DESCRIPTION
 The
 .Fn funopen
diff -r 2e293d9f8162 -r 791a2d3017e0 lib/libform/form_field.3
--- a/lib/libform/form_field.3  Mon Oct 08 18:08:40 2012 +0000
+++ b/lib/libform/form_field.3  Mon Oct 08 18:15:09 2012 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: form_field.3,v 1.11 2010/03/22 21:58:31 joerg Exp $
+.\"    $NetBSD: form_field.3,v 1.12 2012/10/08 18:15:09 njoly Exp $
 .\"
 .\" Copyright (c) 2001
 .\"    Brett Lymn - blymn%baea.com.au@localhost, brett_lymn%yahoo.com.au@localhost
@@ -49,7 +49,7 @@
 .Ft int
 .Fn move_field "FIELD *field" "int frow" "int fcol"
 .Ft int
-.Fn set_form_fields "FORM *form" " FIELD **fields"
+.Fn set_form_fields "FORM *form" "FIELD **fields"
 .Sh DESCRIPTION
 The
 .Fn field_count
diff -r 2e293d9f8162 -r 791a2d3017e0 lib/libskey/skey.3
--- a/lib/libskey/skey.3        Mon Oct 08 18:08:40 2012 +0000
+++ b/lib/libskey/skey.3        Mon Oct 08 18:15:09 2012 +0000
@@ -1,4 +1,4 @@
-.\"     $NetBSD: skey.3,v 1.9 2008/04/30 13:10:52 martin Exp $
+.\"     $NetBSD: skey.3,v 1.10 2012/10/08 18:15:10 njoly Exp $
 .\"
 .\" Copyright (c) 2001 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -81,7 +81,7 @@
 .Ft void
 .Fn rip "char *buf"
 .Ft char *
-.Fn readpass "char *buf " "int n"
+.Fn readpass "char *buf" "int n"
 .Ft char *
 .Fn readskey "char *buf" "int n"
 .Ft int



Home | Main Index | Thread Index | Old Index