[MINOR] use 'is_set' instead of 'isset' in struct poller

'isset' was defined as a macro in /usr/include/sys/param.h, and
it breaks build on at least OpenBSD.
diff --git a/src/ev_epoll.c b/src/ev_epoll.c
index 482ddc0..6931a0c 100644
--- a/src/ev_epoll.c
+++ b/src/ev_epoll.c
@@ -49,7 +49,7 @@
  * instead of the usual macros improve the FD_* performance by about 80%,
  * and that marking them regparm(2) adds another 20%.
  */
-REGPRM2 static int __fd_isset(const int fd, int dir)
+REGPRM2 static int __fd_is_set(const int fd, int dir)
 {
 	return FD_ISSET(fd, fd_evts[dir]);
 }
@@ -308,7 +308,7 @@
 	p->init = epoll_init;
 	p->term = epoll_term;
 	p->poll = epoll_poll;
-	p->isset = __fd_isset;
+	p->is_set = __fd_is_set;
 	p->set = __fd_set;
 	p->clr = __fd_clr;
 	p->rem = __fd_rem;