+1998-06-27 12:58 Ulrich Drepper <drepper@cygnus.com>
+
+ * sysdeps/unix/bsd/poll.c: Define __poll, make poll weak alias.
+
1998-06-27 7:07 Richard Henderson <rth@cygnus.com>
* math/atest-exp.c (exp_mpn, main): Cast to mp_limb_t appropriately.
-/* 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
or -1 for errors. */
int
-poll (fds, nfds, timeout)
+__poll (fds, nfds, timeout)
struct pollfd *fds;
unsigned long int nfds;
int timeout;
return ready;
}
+#ifndef __poll
+weak_alias (__poll, poll)
+#endif