/* ** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. ** Distributed under the terms of the MIT License. */ #if 0 #include #include #include int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len); int unmount(const char *path); int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len) { __set_errno(EOPNOTSUPP); return -1; } int unmount(const char *path) { __set_errno(EOPNOTSUPP); return -1; } #endif