Patrick Kelley 8fd444092b initial
2025-05-07 15:35:15 -04:00

19 lines
305 B
C

// sys/poll.h
// Copyright Robin.Rowe@CinePaint.org
// License open source MIT
#ifndef sys_poll_h
#define sys_poll_h
#include <unistd.h>
typedef WSAPOLLFD pollfd;
typedef unsigned long nfds_t;
inline
int poll(struct pollfd *fds, nfds_t nfds, int timeout)
{ return WSAPoll(fds,nfds,timeout);
}
#endif