1 /* 2 ** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 ** Distributed under the terms of the Haiku License. 4 */ 5 6 7 #if 0 8 9 #include <errno.h> 10 #include <sys/types.h> 11 12 int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len); 13 int unmount(const char *path); 14 15 int 16 mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len) 17 { 18 errno = EOPNOTSUPP; 19 return -1; 20 } 21 22 23 int 24 unmount(const char *path) 25 { 26 errno = EOPNOTSUPP; 27 return -1; 28 } 29 30 #endif 31