WebKit roll 98705:98715
[chromium-blink-merge.git] / base / os_compat_android.cc
blobd5006564ca417ce277b5490a06874f10f1ecc46b
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
5 #include "base/os_compat_android.h"
7 #include "base/stringprintf.h"
9 // There is no futimes() avaiable in Bionic, so we provide our own
10 // implementation until it is there.
11 extern "C" {
13 int futimes(int fd, const struct timeval tv[2]) {
14 const std::string fd_path = StringPrintf("/proc/self/fd/%d", fd);
15 return utimes(fd_path.c_str(), tv);
18 } // extern "C"