blob: d5006564ca417ce277b5490a06874f10f1ecc46b [file] [log] [blame]
[email protected]f7d69972011-06-21 22:34:501// 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.
4
5#include "base/os_compat_android.h"
6
[email protected]4d0f93c2011-09-29 04:43:547#include "base/stringprintf.h"
[email protected]f7d69972011-06-21 22:34:508
9// There is no futimes() avaiable in Bionic, so we provide our own
10// implementation until it is there.
11extern "C" {
12
13int 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);
16}
17
18} // extern "C"