From: Joel Rosdahl Date: Sat, 27 Feb 2010 23:02:29 +0000 (+0100) Subject: Portability: Include headers to get O_RDONLY and friend X-Git-Tag: v3.0pre0~22 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8ce0a8475fe1409b8349c71ee9aeca1a27f38e68;p=thirdparty%2Fccache.git Portability: Include headers to get O_RDONLY and friend --- diff --git a/comments.c b/comments.c index 378d0d721..117395447 100644 --- a/comments.c +++ b/comments.c @@ -19,8 +19,11 @@ #include "ccache.h" #include "comments.h" -#include +#include +#include #include +#include +#include #define HASH(ch) \ do { \ diff --git a/hash.c b/hash.c index e2159d7c5..4862b46de 100644 --- a/hash.c +++ b/hash.c @@ -21,6 +21,9 @@ #include "ccache.h" +#include +#include +#include #include #include #include diff --git a/manifest.c b/manifest.c index 2c66cfa97..591711a6d 100644 --- a/manifest.c +++ b/manifest.c @@ -23,13 +23,14 @@ #include "murmurhashneutral2.h" #include "comments.h" +#include +#include #include +#include #include #include #include #include -#include -#include #include #include diff --git a/stats.c b/stats.c index 89336c44b..c7f4d3290 100644 --- a/stats.c +++ b/stats.c @@ -25,6 +25,9 @@ #include "ccache.h" +#include +#include +#include #include #include #include diff --git a/unify.c b/unify.c index 48d6e64c9..b001a520b 100644 --- a/unify.c +++ b/unify.c @@ -32,8 +32,11 @@ #include "ccache.h" +#include +#include #include #include +#include #include #include diff --git a/util.c b/util.c index 951ace18c..b704dc98d 100644 --- a/util.c +++ b/util.c @@ -19,8 +19,10 @@ #include "ccache.h" -#include #include +#include +#include +#include #include #include #include