diff options
author | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-12 22:40:21 +0000 |
---|---|---|
committer | tc@google.com <tc@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2008-08-12 22:40:21 +0000 |
commit | b860cc5a23bc590c708617efe35b6e38b483c3b3 (patch) | |
tree | be0f9111fa44a28149f0454d35cc72a7ad011eea /base/shared_memory_posix.cc | |
parent | 87899080bbcb9df81fa21c118f2be5545ca2ec2b (diff) | |
download | chromium_src-b860cc5a23bc590c708617efe35b6e38b483c3b3.zip chromium_src-b860cc5a23bc590c708617efe35b6e38b483c3b3.tar.gz chromium_src-b860cc5a23bc590c708617efe35b6e38b483c3b3.tar.bz2 |
Make this file compile on linux. We need fcntl.h for O_RDONLY, etc.
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@753 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base/shared_memory_posix.cc')
-rw-r--r-- | base/shared_memory_posix.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/base/shared_memory_posix.cc b/base/shared_memory_posix.cc index 9a4953c..51a06a6 100644 --- a/base/shared_memory_posix.cc +++ b/base/shared_memory_posix.cc @@ -29,6 +29,7 @@ #include "base/shared_memory.h" +#include <fcntl.h> #include <sys/mman.h> #include "base/logging.h" |