OLD | NEW |
1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 /* Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 * Use of this source code is governed by a BSD-style license that can be | 2 * Use of this source code is governed by a BSD-style license that can be |
3 * found in the LICENSE file. | 3 * found in the LICENSE file. |
4 */ | 4 */ |
5 #ifndef LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ | 5 #ifndef LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ |
6 #define LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ | 6 #define LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ |
7 | 7 |
8 #include "nacl_mounts/ostypes.h" | 8 #include "nacl_mounts/ostypes.h" |
9 #include "utils/macros.h" | 9 #include "utils/macros.h" |
10 | 10 |
(...skipping 28 matching lines...) Expand all Loading... |
39 int ki_isatty(int fd); | 39 int ki_isatty(int fd); |
40 int ki_close(int fd); | 40 int ki_close(int fd); |
41 off_t ki_lseek(int fd, off_t offset, int whence); | 41 off_t ki_lseek(int fd, off_t offset, int whence); |
42 int ki_remove(const char* path); | 42 int ki_remove(const char* path); |
43 int ki_unlink(const char* path); | 43 int ki_unlink(const char* path); |
44 int ki_access(const char* path, int amode); | 44 int ki_access(const char* path, int amode); |
45 | 45 |
46 EXTERN_C_END | 46 EXTERN_C_END |
47 | 47 |
48 #endif // LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ | 48 #endif // LIBRARIES_NACL_MOUNTS_KERNEL_INTERCEPT_H_ |
| 49 |
OLD | NEW |