mirror of
git://git.musl-libc.org/musl
synced 2025-03-06 20:48:29 +01:00
fix wrong type for poll.h nfds_t
this should not break anything since the type should never be used except as the argument type for poll.
This commit is contained in:
parent
0447b8dc5c
commit
3f62f76cab
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ extern "C" {
|
|||
#define POLLWRBAND 0x200
|
||||
#define POLLMSG 0x400
|
||||
|
||||
typedef unsigned int nfds_t;
|
||||
typedef unsigned long nfds_t;
|
||||
|
||||
struct pollfd
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue