From 5202485ffb9eef9f9efa0a13a68488e48851153c Mon Sep 17 00:00:00 2001 From: Adrian Johnson Date: Sun, 27 Jan 2013 11:32:34 +1030 Subject: [PATCH] Use sys/types.h instead of stdio.h for the off_t type Bug 44085 --- goo/gtypes.h | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/goo/gtypes.h b/goo/gtypes.h index 6e9c1ac..9c473b2 100644 --- a/goo/gtypes.h +++ b/goo/gtypes.h @@ -25,7 +25,10 @@ #define GTYPES_H #include "poppler-config.h" -#include // for off_t + +#ifndef _WIN32 +#include // for off_t +#endif /* * These have stupid names to avoid conflicts with some (but not all) -- 1.7.10.4