summaryrefslogtreecommitdiffstats
path: root/openbsd-compat/bsd-poll.c
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2013-11-08 21:12:58 +1100
committerDarren Tucker <dtucker@zip.com.au>2013-11-08 21:12:58 +1100
commit8c333ec23bdf7da917aa20ac6803a2cdd79182c5 (patch)
tree2faacec378021217e28ad7e7d8cd0efb7d69897e /openbsd-compat/bsd-poll.c
parentd94240b2f6b376b6e9de187e4a0cd4b89dfc48cb (diff)
- (dtucker) [openbsd-compat/bsd-poll.c] Add headers to prevent compile
warnings.
Diffstat (limited to 'openbsd-compat/bsd-poll.c')
-rw-r--r--openbsd-compat/bsd-poll.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/openbsd-compat/bsd-poll.c b/openbsd-compat/bsd-poll.c
index f899d7a2..c7ef8277 100644
--- a/openbsd-compat/bsd-poll.c
+++ b/openbsd-compat/bsd-poll.c
@@ -1,4 +1,4 @@
-/* $Id: bsd-poll.c,v 1.4 2008/08/29 21:32:38 dtucker Exp $ */
+/* $Id: bsd-poll.c,v 1.5 2013/11/08 10:12:58 dtucker Exp $ */
/*
* Copyright (c) 2004, 2005, 2007 Darren Tucker (dtucker at zip com au).
@@ -19,12 +19,15 @@
#include "includes.h"
#if !defined(HAVE_POLL)
+#include <sys/types.h>
+#include <sys/time.h>
#ifdef HAVE_SYS_SELECT_H
# include <sys/select.h>
#endif
-#include <stdlib.h>
#include <errno.h>
+#include <stdlib.h>
+#include <unistd.h>
#include "bsd-poll.h"
/*