From: Timo Sirainen Date: Wed, 7 May 2003 12:21:02 +0000 (+0300) Subject: struct timeval requires sys/time.h X-Git-Tag: 1.1.alpha1~4675 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3185a94a1253e1f513e056a49085a9baa5ffabc9;p=thirdparty%2Fdovecot%2Fcore.git struct timeval requires sys/time.h --HG-- branch : HEAD --- diff --git a/src/lib-index/maildir/maildir-index.h b/src/lib-index/maildir/maildir-index.h index 1a2f0fe2d1..7268ea61af 100644 --- a/src/lib-index/maildir/maildir-index.h +++ b/src/lib-index/maildir/maildir-index.h @@ -1,6 +1,7 @@ #ifndef __MAILDIR_INDEX_H #define __MAILDIR_INDEX_H +#include #include #include "mail-index.h" diff --git a/src/lib/ioloop-internal.h b/src/lib/ioloop-internal.h index 7f8d84181c..539e3640e0 100644 --- a/src/lib/ioloop-internal.h +++ b/src/lib/ioloop-internal.h @@ -3,8 +3,6 @@ #include "ioloop.h" -#include - struct ioloop { struct ioloop *prev; diff --git a/src/lib/ioloop.h b/src/lib/ioloop.h index cf7b409c32..b65da9e975 100644 --- a/src/lib/ioloop.h +++ b/src/lib/ioloop.h @@ -1,6 +1,7 @@ #ifndef __IOLOOP_H #define __IOLOOP_H +#include #include #define IO_READ (1 << 0)