From d2c8dd81be7663a087dc7a7a4a0388af4cff438d Mon Sep 17 00:00:00 2001 From: David Xu Date: Sun, 16 Oct 2005 22:23:03 +0000 Subject: [PATCH] Use __pid_t instead of pid_t for sigqueue as other functions. --- include/signal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/signal.h b/include/signal.h index 96839818235d..3241193ca588 100644 --- a/include/signal.h +++ b/include/signal.h @@ -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,