2 ** Copyright 2002-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
3 ** Distributed under the terms of the Haiku License.
10 #include <sys/types.h>
12 #include <errno_private.h>
15 int mount(const char *filesystem
, const char *where
, const char *device
, ulong flags
, void *parms
, int len
);
16 int unmount(const char *path
);
19 mount(const char *filesystem
, const char *where
, const char *device
, ulong flags
, void *parms
, int len
)
21 __set_errno(EOPNOTSUPP
);
27 unmount(const char *path
)
29 __set_errno(EOPNOTSUPP
);