1/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkOSFile.h"
9
10bool sk_exists(const char *path, SkFILE_Flags flags) {
11    return false;
12}
13
14bool sk_fidentical(SkFILE* a, SkFILE* b) {
15    return false;
16}
17
18int sk_fileno(SkFILE* f) {
19    return -1;
20}
21
22void sk_fmunmap(const void* addr, size_t length) { }
23
24void* sk_fdmmap(int fd, size_t* size) {
25    return NULL;
26}
27
28void* sk_fmmap(SkFILE* f, size_t* size) {
29    return NULL;
30}
31