aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/sys/pselect.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/sys/pselect.c')
-rw-r--r--lib/libc/sys/pselect.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libc/sys/pselect.c b/lib/libc/sys/pselect.c
index a623a7d5cc74..38477e39af44 100644
--- a/lib/libc/sys/pselect.c
+++ b/lib/libc/sys/pselect.c
@@ -1,6 +1,5 @@
/*
* Copyright (c) 2014 The FreeBSD Foundation.
- * All rights reserved.
*
* Portions of this software were developed by Konstantin Belousov
* under sponsorship from the FreeBSD Foundation.
@@ -30,9 +29,6 @@
* EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
-#include <sys/cdefs.h>
-__FBSDID("$FreeBSD$");
-
#include <sys/types.h>
#include <sys/select.h>
#include "libc_private.h"
@@ -44,8 +40,5 @@ int
pselect(int n, fd_set *rs, fd_set *ws, fd_set *es, const struct timespec *t,
const sigset_t *s)
{
-
- return (((int (*)(int, fd_set *, fd_set *, fd_set *,
- const struct timespec *, const sigset_t *))
- __libc_interposing[INTERPOS_pselect])(n, rs, ws, es, t, s));
+ return (INTERPOS_SYS(pselect, n, rs, ws, es, t, s));
}