From: Ulrich Drepper Date: Sat, 27 Jan 2001 04:58:11 +0000 (+0000) Subject: Use nfds_t type in function definition. X-Git-Tag: glibc-2.16-ports-before-merge~2058 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=76d981d3a6d8e6e73e02e61abc4553743846cad4;p=thirdparty%2Fglibc.git Use nfds_t type in function definition. --- diff --git a/sysdeps/unix/sysv/aix/poll.c b/sysdeps/unix/sysv/aix/poll.c index ae041a852f1..bd1967600a7 100644 --- a/sysdeps/unix/sysv/aix/poll.c +++ b/sysdeps/unix/sysv/aix/poll.c @@ -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);