Source-Changes-HG archive

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

[src/trunk]: src/lib/libc/sys Fix the declaration of the funciton in the SYNO...



details:   https://anonhg.NetBSD.org/src/rev/56a062f015b8
branches:  trunk
changeset: 512886:56a062f015b8
user:      thorpej <thorpej%NetBSD.org@localhost>
date:      Wed Jul 18 19:29:40 2001 +0000

description:
Fix the declaration of the funciton in the SYNOPSIS section.

diffstat:

 lib/libc/sys/clone.2 |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (21 lines):

diff -r 25d0e10f1891 -r 56a062f015b8 lib/libc/sys/clone.2
--- a/lib/libc/sys/clone.2      Wed Jul 18 19:24:02 2001 +0000
+++ b/lib/libc/sys/clone.2      Wed Jul 18 19:29:40 2001 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: clone.2,v 1.2 2001/07/17 21:16:52 thorpej Exp $
+.\"    $NetBSD: clone.2,v 1.3 2001/07/18 19:29:40 thorpej Exp $
 .\"
 .\" Copyright (c) 2001 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -45,9 +45,9 @@
 .Sh SYNOPSIS
 .Fd #include <sched.h>
 .Ft pid_t
-.Fn clone "int (*func)" "void *arg" "void *stack" "int flags" "void *arg"
+.Fn clone "int (*func)(void *arg)" "void *stack" "int flags" "void *arg"
 .Ft pid_t
-.Fn __clone "int (*func)" "void *arg" "void *stack" "int flags" "void *arg"
+.Fn __clone "int (*func)(void *arg)" "void *stack" "int flags" "void *arg"
 .Sh DESCRIPTION
 The
 .Nm



Home | Main Index | Thread Index | Old Index