Change unistd.h to stddef.h to be correct
size_t should be defined through inclusion of stddef.h instead of unistd.h Change-Id: Ieaadacfca1e1c44c2533ea95f73fc060c1519b52
This commit is contained in:
parent
b9590bde9a
commit
f2729494e8
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@
|
|||
#include <utils/FileMap.h>
|
||||
#include <utils/StreamingZipInflater.h>
|
||||
#include <string.h>
|
||||
#include <unistd.h>
|
||||
#include <stddef.h>
|
||||
#include <assert.h>
|
||||
|
||||
static inline size_t min(size_t a, size_t b) { return (a < b) ? a : b; }
|
||||
|
|
Loading…
Reference in a new issue