michael@0: /* michael@0: * Copyright 2013 Google Inc. michael@0: * michael@0: * Use of this source code is governed by a BSD-style license that can be michael@0: * found in the LICENSE file. michael@0: */ michael@0: michael@0: #include "SkOSFile.h" michael@0: michael@0: bool sk_fidentical(SkFILE* a, SkFILE* b) { michael@0: return false; michael@0: } michael@0: michael@0: int sk_fileno(SkFILE* f) { michael@0: return -1; michael@0: } michael@0: michael@0: void sk_fmunmap(const void* addr, size_t length) { } michael@0: michael@0: void* sk_fdmmap(int fd, size_t* size) { michael@0: return NULL; michael@0: } michael@0: michael@0: void* sk_fmmap(SkFILE* f, size_t* size) { michael@0: return NULL; michael@0: }