chiark / gitweb /
[PATCH] klibc: version 1.0.3
[elogind.git] / klibc / include / poll.h
1 /*
2  * poll.h
3  */
4
5 #ifndef _POLL_H
6 #define _POLL_H
7
8 #include <klibc/extern.h>
9 #include <linux/poll.h>
10
11 /* POSIX specifies "int" for the timeout, Linux seems to use long... */
12
13 typedef unsigned int nfds_t;
14 __extern int poll(struct pollfd *, nfds_t, long);
15
16 #endif /* _POLL_H */