blob: 368e54a343c77dece007d48e6ab811917cdeae64 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/* SPDX-License-Identifier: GPL-2.0-only */
#ifndef __SYS_MOUNT_H
#define __SYS_MOUNT_H
int mount(const char *device, const char *fsname, const char *path,
const char *fsoptions);
int umount(const char *pathname);
#endif /* __SYS_MOUNT_H */
|