summaryrefslogtreecommitdiffstats
path: root/include/ziparchive
diff options
context:
space:
mode:
authorNarayan Kamath <narayan@google.com>2013-12-06 18:27:53 +0000
committerNarayan Kamath <narayan@google.com>2013-12-06 18:27:53 +0000
commit574c3b35df54a288e70d1099ccb0ffe02d14c996 (patch)
tree84abe6e5ee8f9313dceee4b5bc4b608b09609032 /include/ziparchive
parenta2125077e104941f797f93fbe6bfad22ef60a1d8 (diff)
downloadsystem_core-574c3b35df54a288e70d1099ccb0ffe02d14c996.zip
system_core-574c3b35df54a288e70d1099ccb0ffe02d14c996.tar.gz
system_core-574c3b35df54a288e70d1099ccb0ffe02d14c996.tar.bz2
Fix Mac OS build for libziparchive.
BSD off_t are implicitly 64 bit so the platform doesn't define off64_t. Change-Id: I51cbe94ead01d2d6bc7c5010d9472487bee7c2d3
Diffstat (limited to 'include/ziparchive')
-rw-r--r--include/ziparchive/zip_archive.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/ziparchive/zip_archive.h b/include/ziparchive/zip_archive.h
index 54b889c..ac3d792 100644
--- a/include/ziparchive/zip_archive.h
+++ b/include/ziparchive/zip_archive.h
@@ -22,6 +22,7 @@
#include <stdint.h>
#include <sys/types.h>
+#include <utils/Compat.h>
__BEGIN_DECLS