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 #include <errno_private.h> 13 14 15 int mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len); 16 int unmount(const char *path); 17 18 int 19 mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len) 20 { 21 __set_errno(EOPNOTSUPP); 22 return -1; 23 } 24 25 26 int 27 unmount(const char *path) 28 { 29 __set_errno(EOPNOTSUPP); 30 return -1; 31 } 32 33 #endif 34