summaryrefslogtreecommitdiff
path: root/usr/src/lib/libc/port/gen/select.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/lib/libc/port/gen/select.c')
-rw-r--r--usr/src/lib/libc/port/gen/select.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/usr/src/lib/libc/port/gen/select.c b/usr/src/lib/libc/port/gen/select.c
index d01908d0a0..ed39ba9efb 100644
--- a/usr/src/lib/libc/port/gen/select.c
+++ b/usr/src/lib/libc/port/gen/select.c
@@ -24,11 +24,11 @@
* Use is subject to license terms.
*/
-#pragma ident "%Z%%M% %I% %E% SMI"
-
/* Copyright (c) 1988 AT&T */
/* All Rights Reserved */
+#pragma ident "%Z%%M% %I% %E% SMI"
+
/*
* Emulation of select() system call using poll() system call.
*
@@ -39,13 +39,11 @@
* Note that is it not feasible to emulate all error conditions,
* in particular conditions that would return EFAULT are far too
* difficult to check for in a library routine.
- *
*/
-#pragma weak pselect = _pselect
-#pragma weak select = _select
+#pragma weak _select = select
-#include "synonyms.h"
+#include "lint.h"
#include <values.h>
#include <pthread.h>
#include <errno.h>