Files
ray/src/shims/windows/poll.h
T
mehrdadnandPhilipp Moritz b0b6b56bb7 Platform shims for Windows (#6548)
* Platform shims for Windows

* Satisfy linter
2019-12-20 12:32:07 -08:00

8 lines
143 B
C

#ifndef POLL_H
#define POLL_H
typedef unsigned long int nfds_t;
int poll(struct pollfd fds[], nfds_t nfds, int timeout);
#endif /* POLL_H */