From 202ade1398ca57070e56de24c3639f3048ecd784 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Fri, 15 Apr 2011 18:40:32 -0500 Subject: Include "config.h" in header files using off_t This makes it absolutely dead easy to ensure off_t has the same length in all compilation units. I just spent 2.5 hours bashing my head on an issue related to this so damn it I'm fixing it for good. Signed-off-by: Dan McGee --- lib/libalpm/package.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib/libalpm/package.h') diff --git a/lib/libalpm/package.h b/lib/libalpm/package.h index 35e4500d..c84e2221 100644 --- a/lib/libalpm/package.h +++ b/lib/libalpm/package.h @@ -24,6 +24,8 @@ #ifndef _ALPM_PACKAGE_H #define _ALPM_PACKAGE_H +#include "config.h" /* ensure off_t is correct length */ + #include /* off_t */ #include /* time_t */ -- cgit v1.2.3-24-g4f1b