]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Update.
authorUlrich Drepper <drepper@redhat.com>
Sat, 27 Jun 1998 13:02:56 +0000 (13:02 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 27 Jun 1998 13:02:56 +0000 (13:02 +0000)
1998-06-27 12:58  Ulrich Drepper  <drepper@cygnus.com>

* sysdeps/unix/bsd/poll.c: Define __poll, make poll weak alias.

ChangeLog
sysdeps/unix/bsd/poll.c

index fe2d543fd184c804bc6cdf84b251efa5116cd5fa..7dce45aa5228515aab12eb9970857d2fa70232ba 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+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.
index 972cd011f1efb1dd96edeebf491e3e7e344092cc..e92b718022f2c574f63a8071b79f8df10cbea8ea 100644 (file)
@@ -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