]> git.ipfire.org Git - thirdparty/dovecot/core.git/commitdiff
struct timeval requires sys/time.h
authorTimo Sirainen <tss@iki.fi>
Wed, 7 May 2003 12:21:02 +0000 (15:21 +0300)
committerTimo Sirainen <tss@iki.fi>
Wed, 7 May 2003 12:21:02 +0000 (15:21 +0300)
--HG--
branch : HEAD

src/lib-index/maildir/maildir-index.h
src/lib/ioloop-internal.h
src/lib/ioloop.h

index 1a2f0fe2d1befff893b96a02b5b61553b0a2ec53..7268ea61af2db8b0479c2034d1b0f79cd8e53473 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __MAILDIR_INDEX_H
 #define __MAILDIR_INDEX_H
 
+#include <sys/time.h>
 #include <dirent.h>
 #include "mail-index.h"
 
index 7f8d84181c59ce93237c90f5d6924616dde2b468..539e3640e0916453cbe6741789bc855feafb5e4b 100644 (file)
@@ -3,8 +3,6 @@
 
 #include "ioloop.h"
 
-#include <sys/time.h>
-
 struct ioloop {
         struct ioloop *prev;
 
index cf7b409c323559a1e56c5e1b41475baa5c2c1122..b65da9e975aa3c428e689b612eaec0548b70f5d6 100644 (file)
@@ -1,6 +1,7 @@
 #ifndef __IOLOOP_H
 #define __IOLOOP_H
 
+#include <sys/time.h>
 #include <time.h>
 
 #define IO_READ                        (1 << 0)