Browse Source

Should be __sigset_t instead of sigset_t.

Khem Raj 18 years ago
parent
commit
75ab33eae1
1 changed files with 2 additions and 2 deletions
  1. 2 2
      libc/sysdeps/linux/common/ppoll.c

+ 2 - 2
libc/sysdeps/linux/common/ppoll.c

@@ -26,11 +26,11 @@
 static inline
 _syscall4(int, __libc_ppoll, struct pollfd *, fds,
 	nfds_t, nfds, const struct timespec *, timeout,
-	const sigset_t *, sigmask);
+	const __sigset_t *, sigmask);
 
 int
 ppoll (struct pollfd *fds, nfds_t nfds, const struct timespec *timeout,
-       const sigset_t *sigmask)
+       const __sigset_t *sigmask)
 {
   /* The Linux kernel can in some situations update the timeout value.
      We do not want that so use a local variable.  */