headers/bsd: Add sys/queue.h.
[haiku.git] / src / system / libroot / posix / unistd / mount.c
blob25ba9d87b44cb3d207ad08000efeebc2901c7125
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 */
7 #if 0
9 #include <errno.h>
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);
18 int
19 mount(const char *filesystem, const char *where, const char *device, ulong flags, void *parms, int len)
21 __set_errno(EOPNOTSUPP);
22 return -1;
26 int
27 unmount(const char *path)
29 __set_errno(EOPNOTSUPP);
30 return -1;
33 #endif