mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Fixed a function arg type in the synopsis.
This commit is contained in:
parent
c7091c3117
commit
5c7e14e4fb
3 changed files with 3 additions and 3 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue