Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 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. | |
| 4 | |
| 5 #ifndef BASE_PLATFORM_FILE_ANDROID_H_ | |
| 6 #define BASE_PLATFORM_FILE_ANDROID_H_ | |
|
joth
2011/06/19 12:48:05
(Looking for a base OWNER opinion on this; I'm gue
brettw
2011/06/20 03:50:40
How about file_util_android.h/cc? I'd rather not h
| |
| 7 #pragma once | |
| 8 | |
| 9 // Not implemented in Bionic. See platform_file_android.cc. | |
| 10 extern "C" int futimes(int fd, const struct timeval tv[2]); | |
| 11 | |
| 12 // The prototype of mkdtemp is missing. | |
| 13 extern "C" char* mkdtemp(char* path); | |
| 14 | |
| 15 #endif // BASE_PLATFORM_FILE_ANDROID_H_ | |
| OLD | NEW |