f0a75d274a
ZFS file system was ported from OpenSolaris operating system. The code in under CDDL license. I'd like to thank all SUN developers that created this great piece of software. Supported by: Wheel LTD (http://www.wheel.pl/) Supported by: The FreeBSD Foundation (http://www.freebsdfoundation.org/) Supported by: Sentex (http://www.sentex.net/)
20 lines
364 B
C
20 lines
364 B
C
#ifndef _OPENSOLARIS_MNTTAB_H_
|
|
#define _OPENSOLARIS_MNTTAB_H_
|
|
|
|
#include <stdio.h>
|
|
#include <paths.h>
|
|
|
|
#define MNTTAB _PATH_DEVNULL
|
|
#define MNT_LINE_MAX 1024
|
|
|
|
struct mnttab {
|
|
char *mnt_special;
|
|
char *mnt_mountp;
|
|
char *mnt_fstype;
|
|
char *mnt_mntopts;
|
|
};
|
|
|
|
int getmntany(FILE *fd, struct mnttab *mgetp, struct mnttab *mrefp);
|
|
|
|
#endif /* !_OPENSOLARIS_MNTTAB_H_ */
|