aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/unix/bsd
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-06-27 13:02:56 +0000
committerUlrich Drepper <drepper@redhat.com>1998-06-27 13:02:56 +0000
commitbfc73ba2b6a817204d4e3f271607b015a7985d91 (patch)
treea6f3172dbab5578e901e3b38b8b1efb41bd032fd /sysdeps/unix/bsd
parent69bf5f75475e708abde760b2b401c2bfa65eec17 (diff)
downloadglibc-bfc73ba2b6a817204d4e3f271607b015a7985d91.zip
glibc-bfc73ba2b6a817204d4e3f271607b015a7985d91.tar.gz
glibc-bfc73ba2b6a817204d4e3f271607b015a7985d91.tar.bz2
Update.
1998-06-27 12:58 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/bsd/poll.c: Define __poll, make poll weak alias.
Diffstat (limited to 'sysdeps/unix/bsd')
-rw-r--r--sysdeps/unix/bsd/poll.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/unix/bsd/poll.c b/sysdeps/unix/bsd/poll.c
index 972cd01..e92b718 100644
--- a/sysdeps/unix/bsd/poll.c
+++ b/sysdeps/unix/bsd/poll.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1994, 1996, 1997 Free Software Foundation, Inc.
+/* Copyright (C) 1994, 1996, 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
@@ -29,7 +29,7 @@
or -1 for errors. */
int
-poll (fds, nfds, timeout)
+__poll (fds, nfds, timeout)
struct pollfd *fds;
unsigned long int nfds;
int timeout;
@@ -79,3 +79,6 @@ poll (fds, nfds, timeout)
return ready;
}
+#ifndef __poll
+weak_alias (__poll, poll)
+#endif