commit | 9d90ed71ccf45bc1e422ee2abc9acf0a806b9319 | [log] [tgz] |
---|---|---|
author | Kenny Root <kroot@google.com> | Wed Jul 28 16:31:24 2010 -0700 |
committer | Kenny Root <kroot@google.com> | Wed Jul 28 16:31:24 2010 -0700 |
tree | 388949d378d71236471652b5f26d6f6f73580e6c | |
parent | bae6fe242ff9a97840ff0c5d9d87c0575d261682 [diff] [blame] |
Add unistd.h for size_t typedef to fix sim-eng Change-Id: Ida4f1742547f39539b601f13182c722aa7cf863e
diff --git a/libs/utils/StreamingZipInflater.cpp b/libs/utils/StreamingZipInflater.cpp index 2ebec93..c13760a 100644 --- a/libs/utils/StreamingZipInflater.cpp +++ b/libs/utils/StreamingZipInflater.cpp
@@ -20,6 +20,7 @@ #include <utils/FileMap.h> #include <utils/StreamingZipInflater.h> #include <string.h> +#include <unistd.h> #include <assert.h> static inline size_t min(size_t a, size_t b) { return (a < b) ? a : b; }