Fixed a function arg type in the synopsis.

This commit is contained in:
Bruce Evans 1998-03-23 13:07:17 +00:00
parent c7091c3117
commit 5c7e14e4fb
3 changed files with 3 additions and 3 deletions

View File

@ -41,7 +41,7 @@ pthread_once
.Fa once_control
= PTHREAD_ONCE_INIT;
.Ft int
.Fn pthread_once "pthread_once_t *once_control" "void *(*init_routine)(void)"
.Fn pthread_once "pthread_once_t *once_control" "void (*init_routine)(void)"
.Sh DESCRIPTION
The first call to
.Fn pthread_once

View File

@ -41,7 +41,7 @@ pthread_once
.Fa once_control
= PTHREAD_ONCE_INIT;
.Ft int
.Fn pthread_once "pthread_once_t *once_control" "void *(*init_routine)(void)"
.Fn pthread_once "pthread_once_t *once_control" "void (*init_routine)(void)"
.Sh DESCRIPTION
The first call to
.Fn pthread_once

View File

@ -41,7 +41,7 @@ pthread_once
.Fa once_control
= PTHREAD_ONCE_INIT;
.Ft int
.Fn pthread_once "pthread_once_t *once_control" "void *(*init_routine)(void)"
.Fn pthread_once "pthread_once_t *once_control" "void (*init_routine)(void)"
.Sh DESCRIPTION
The first call to
.Fn pthread_once