more mingw quirks

This commit is contained in:
Benjamin Sergeant
2021-03-13 18:55:30 -08:00
parent e63ac69ec6
commit 78a670e0c8
2 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,8 @@ struct pollfd {
#define POLLIN 0x001 /* There is data to read. */
#define POLLOUT 0x004 /* Writing now will not block. */
#define POLLERR 0x008 /* Error condition. */
#define POLLHUP 0x010 /* Hung up. */
#define POLLNVAL 0x020 /* Invalid polling request. */
#endif
#else