diff options
author | bde <bde@FreeBSD.org> | 1998-03-23 13:07:17 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1998-03-23 13:07:17 +0000 |
commit | ad583a718772d3e9c2e231544e13fdec07f0032a (patch) | |
tree | b4e8f0961767123ec464b03c45586cdb4a0b6878 /share | |
parent | 57517b42e5107bad4ffedfa65b82b880fac1c21e (diff) | |
download | FreeBSD-src-ad583a718772d3e9c2e231544e13fdec07f0032a.zip FreeBSD-src-ad583a718772d3e9c2e231544e13fdec07f0032a.tar.gz |
Fixed a function arg type in the synopsis.
Diffstat (limited to 'share')
-rw-r--r-- | share/man/man3/pthread_once.3 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/share/man/man3/pthread_once.3 b/share/man/man3/pthread_once.3 index 9ade42f..bbd823b 100644 --- a/share/man/man3/pthread_once.3 +++ b/share/man/man3/pthread_once.3 @@ -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 |