CVSROOT: /cvs
Module name: src
Changes by: [email protected] 2025/06/06 18:30:54
Modified files:
lib/libpthread/man: pthread_sigmask.3
Log message:
The pthread_sigmask(3) function is a special case.
The POSIX specification of the c99 utility explicitly requires
it to be declared in <signal.h> (and not in <pthread.h>)
and yet allows it to require -lpthread.
While OpenBSD does not require -lpthread and provides the function
in libc, which POSIX permits, specifying -lpthread can do no harm
and may improve portability, so say .Lb libpthread here, too.
Requested by guenther@.