commit | 1e0659c275bb392c045087af4f6b0d7565cb3d77 | [log] [tgz] |
---|---|---|
author | Steve Block <steveblock@google.com> | Tue May 24 12:43:12 2011 +0100 |
committer | Steve Block <steveblock@google.com> | Tue May 24 13:42:09 2011 +0100 |
tree | 09febd313ccef178417974f7b7098e89e20bfd93 | |
parent | b8e0da25ee8efac3bb05cd6b2730aafbd96119f4 [diff] [blame] |
Update V8 to r6768 as required by WebKit r78450 Change-Id: Ib8868ff7147a76547a8d1d85f257ebe8546a3d3f
diff --git a/src/platform-posix.cc b/src/platform-posix.cc index ab5c0a3..256dc75 100644 --- a/src/platform-posix.cc +++ b/src/platform-posix.cc
@@ -122,6 +122,11 @@ } +bool OS::Remove(const char* path) { + return (remove(path) == 0); +} + + const char* OS::LogFileOpenMode = "w";