Use nfds_t type in function definition.

This commit is contained in:
Ulrich Drepper 2001-01-27 04:58:11 +00:00
parent 274a3ffc63
commit 76d981d3a6
1 changed files with 2 additions and 2 deletions

View 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. This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or The GNU C Library is free software; you can redistribute it and/or
@ -21,7 +21,7 @@
int int
__poll (fds, nfds, timeout) __poll (fds, nfds, timeout)
struct pollfd *fds; struct pollfd *fds;
unsigned long int nfds; nfds_t nfds;
int timeout; int timeout;
{ {
return poll (fds, nfds, timeout); return poll (fds, nfds, timeout);