summaryrefslogtreecommitdiff
path: root/lib/libevent/poll.c
diff options
context:
space:
mode:
authorAlexander Bluhm <bluhm@cvs.openbsd.org>2014-10-17 19:16:02 +0000
committerAlexander Bluhm <bluhm@cvs.openbsd.org>2014-10-17 19:16:02 +0000
commit98b613962c1a4a56bce22baa1f335339e8c4890d (patch)
treec776dda3c4b146833461c8199a02beceda773e42 /lib/libevent/poll.c
parentbbd1ed2e546f7fcef3b41f9a2564d8fce925c1e9 (diff)
Remove #ifdef HAVE_.*_H, just include the header files.
Do not include sys/param.h. OK nicm@
Diffstat (limited to 'lib/libevent/poll.c')
-rw-r--r--lib/libevent/poll.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/lib/libevent/poll.c b/lib/libevent/poll.c
index 65155a4f331..c318c376d5d 100644
--- a/lib/libevent/poll.c
+++ b/lib/libevent/poll.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: poll.c,v 1.18 2014/10/16 07:38:06 bluhm Exp $ */
+/* $OpenBSD: poll.c,v 1.19 2014/10/17 19:16:01 bluhm Exp $ */
/*
* Copyright 2000-2003 Niels Provos <provos@citi.umich.edu>
@@ -28,12 +28,9 @@
*/
#include <sys/types.h>
-#ifdef HAVE_SYS_TIME_H
#include <sys/time.h>
-#else
-#include <sys/_libevent_time.h>
-#endif
#include <sys/queue.h>
+
#include <poll.h>
#include <signal.h>
#include <stdio.h>