1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-08-10 05:03:06 +03:00

* misc/pselect.c (__pselect): Remove static.

This commit is contained in:
Ulrich Drepper
2006-01-19 15:24:31 +00:00
parent df3eec7da9
commit 814ef022c6
2 changed files with 5 additions and 1 deletions

View File

@@ -1,3 +1,7 @@
2006-01-19 Jakub Jelinek <jakub@redhat.com>
* misc/pselect.c (__pselect): Remove static.
2006-01-18 Roland McGrath <roland@redhat.com> 2006-01-18 Roland McGrath <roland@redhat.com>
* sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h [__ASSEMBLER__]: Don't * sysdeps/ieee754/ldbl-opt/math_ldbl_opt.h [__ASSEMBLER__]: Don't

View File

@@ -30,7 +30,7 @@
after waiting the interval specified therein. Additionally set the sigmask after waiting the interval specified therein. Additionally set the sigmask
SIGMASK for this call. Returns the number of ready descriptors, or -1 for SIGMASK for this call. Returns the number of ready descriptors, or -1 for
errors. */ errors. */
static int int
__pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds, __pselect (int nfds, fd_set *readfds, fd_set *writefds, fd_set *exceptfds,
const struct timespec *timeout, const sigset_t *sigmask) const struct timespec *timeout, const sigset_t *sigmask)
{ {