Use nfds_t type in function definition.
authorUlrich Drepper <drepper@redhat.com>
Sat, 27 Jan 2001 04:58:11 +0000 (04:58 +0000)
committerUlrich Drepper <drepper@redhat.com>
Sat, 27 Jan 2001 04:58:11 +0000 (04:58 +0000)
sysdeps/unix/sysv/aix/poll.c

index ae041a8..bd19676 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1999, 2000 Free Software Foundation, Inc.
+/* Copyright (C) 1999, 2000, 2001 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
@@ -21,7 +21,7 @@
 int
 __poll (fds, nfds, timeout)
      struct pollfd *fds;
-     unsigned long int nfds;
+     nfds_t nfds;
      int timeout;
 {
   return poll (fds, nfds, timeout);