xref: /haiku/src/system/libroot/posix/unistd/mount.c (revision 1e36cfc2721ef13a187c6f7354dc9cbc485e89d3)
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