blob: f10254de5eaa253f9305a1f6d4de55a397930623 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#include <errno.h>
#include <sys/mount.h>
#include <bits/ensure.h>
int mount(const char *source, const char *target,
const char *fstype, unsigned long flags, const void *data) {
return 0;
}
int umount(const char *target) {
return umount2(target, 0);
}
int umount2(const char *target, int flags) {
return 0;
}
|