diff options
author | Tom Cherry <tomcherry@google.com> | 2020-04-13 11:04:01 -0700 |
---|---|---|
committer | Tom Cherry <tomcherry@google.com> | 2020-04-13 11:09:12 -0700 |
commit | 3387cab883d3eb03b5c78ef0df0a18fbdae32eed (patch) | |
tree | ea79206a0a0e8b52e42299ccb71de69b3119110b /opengl/libs/EGL/FileBlobCache.cpp | |
parent | 4cec5c9df04432e3aff98286957acfefc5c5badc (diff) |
Include what you use: <fcntl.h>
This was transitively included, but no longer is, so it must be
explicitly included.
Exempt-From-Owner-Approval: Janitorial
Test: build
Change-Id: I369e3bdc049f811acbcea095d90960a16d5ff4e0
Diffstat (limited to 'opengl/libs/EGL/FileBlobCache.cpp')
-rw-r--r-- | opengl/libs/EGL/FileBlobCache.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/opengl/libs/EGL/FileBlobCache.cpp b/opengl/libs/EGL/FileBlobCache.cpp index cc42ac7fef..96a29e1378 100644 --- a/opengl/libs/EGL/FileBlobCache.cpp +++ b/opengl/libs/EGL/FileBlobCache.cpp @@ -17,11 +17,12 @@ #include "FileBlobCache.h" #include <errno.h> +#include <fcntl.h> #include <inttypes.h> -#include <log/log.h> #include <sys/mman.h> #include <sys/stat.h> +#include <log/log.h> // Cache file header static const char* cacheFileMagic = "EGL$"; |