Index: native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc |
diff --git a/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc b/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc |
index 93dbf1867280c278cb6d629605bed4f8ec8591f2..2858faf54dade76169f5fb9f5ca2d331b4f06e0b 100644 |
--- a/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc |
+++ b/native_client_sdk/src/libraries/nacl_io/passthroughfs/passthrough_fs.cc |
@@ -22,11 +22,6 @@ Error PassthroughFs::Init(const FsInitArgs& args) { |
void PassthroughFs::Destroy() { |
} |
-Error PassthroughFs::Access(const Path& path, int a_mode) { |
- // There is no underlying 'access' syscall in NaCl. It just returns ENOSYS. |
- return ENOSYS; |
-} |
- |
Error PassthroughFs::Open(const Path& path, int mode, ScopedNode* out_node) { |
out_node->reset(NULL); |
int real_fd; |