Use __pid_t instead of pid_t for sigqueue as other functions.

This commit is contained in:
David Xu 2005-10-16 22:23:03 +00:00
parent 8bcc0d3f95
commit d2c8dd81be
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=151395

View File

@ -77,7 +77,7 @@ int sigwait(const sigset_t * __restrict, int * __restrict);
#endif
#if __POSIX_VISIBLE >= 199506 || __XSI_VISIBLE >= 600
int sigqueue(pid_t, int, const union sigval);
int sigqueue(__pid_t, int, const union sigval);
struct timespec;
int sigtimedwait(const sigset_t * __restrict, siginfo_t * __restrict,