Fixed a function arg type in the synopsis.
This commit is contained in:
parent
57517b42e5
commit
ad583a7187
@ -41,7 +41,7 @@ pthread_once
|
|||||||
.Fa once_control
|
.Fa once_control
|
||||||
= PTHREAD_ONCE_INIT;
|
= PTHREAD_ONCE_INIT;
|
||||||
.Ft int
|
.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
|
.Sh DESCRIPTION
|
||||||
The first call to
|
The first call to
|
||||||
.Fn pthread_once
|
.Fn pthread_once
|
||||||
|
@ -41,7 +41,7 @@ pthread_once
|
|||||||
.Fa once_control
|
.Fa once_control
|
||||||
= PTHREAD_ONCE_INIT;
|
= PTHREAD_ONCE_INIT;
|
||||||
.Ft int
|
.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
|
.Sh DESCRIPTION
|
||||||
The first call to
|
The first call to
|
||||||
.Fn pthread_once
|
.Fn pthread_once
|
||||||
|
@ -41,7 +41,7 @@ pthread_once
|
|||||||
.Fa once_control
|
.Fa once_control
|
||||||
= PTHREAD_ONCE_INIT;
|
= PTHREAD_ONCE_INIT;
|
||||||
.Ft int
|
.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
|
.Sh DESCRIPTION
|
||||||
The first call to
|
The first call to
|
||||||
.Fn pthread_once
|
.Fn pthread_once
|
||||||
|
Loading…
Reference in New Issue
Block a user