Fix the declaration of the funciton in the SYNOPSIS section.

This commit is contained in:
thorpej 2001-07-18 19:29:40 +00:00
parent 941c51150b
commit 511c17cad8
1 changed files with 3 additions and 3 deletions

View File

@ -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