9fbe1e6e66
This operation is not supported on OpenBSD so just set errno to ENOTSUP.
22 lines
386 B
C
22 lines
386 B
C
/* See LICENSE file for copyright and license details. */
|
|
|
|
/* grabmntinfo.c */
|
|
struct mntinfo {
|
|
const char *fsname;
|
|
const char *mntdir;
|
|
};
|
|
|
|
int grabmntinfo(struct mntinfo **minfo);
|
|
|
|
/* syslog.c */
|
|
int syslog_size(void);
|
|
int syslog_read(void *buf, size_t n);
|
|
|
|
/* umount.c */
|
|
enum {
|
|
UBASE_MNT_FORCE = 1 << 0,
|
|
UBASE_MNT_DETACH = 1 << 1
|
|
};
|
|
|
|
int do_umount(const char *target, int opts);
|