diff options
author | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-06 01:09:06 +0000 |
---|---|---|
committer | Pawel Jakub Dawidek <pjd@FreeBSD.org> | 2007-04-06 01:09:06 +0000 |
commit | f0a75d274af375d15b97b830966b99a02b7db911 (patch) | |
tree | 3061c8734d9ce560165e672836837a0f411a83c9 /cddl/compat/opensolaris/include/mnttab.h | |
parent | c8c0ba192e3ac07c3797a1bbca52e5575e019890 (diff) | |
download | src-f0a75d274af375d15b97b830966b99a02b7db911.tar.gz src-f0a75d274af375d15b97b830966b99a02b7db911.zip |
Please welcome ZFS - The last word in file systems.
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/)
Notes
Notes:
svn path=/head/; revision=168404
Diffstat (limited to 'cddl/compat/opensolaris/include/mnttab.h')
-rw-r--r-- | cddl/compat/opensolaris/include/mnttab.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/cddl/compat/opensolaris/include/mnttab.h b/cddl/compat/opensolaris/include/mnttab.h new file mode 100644 index 000000000000..6e7d28c1ee01 --- /dev/null +++ b/cddl/compat/opensolaris/include/mnttab.h @@ -0,0 +1,19 @@ +#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_ */ |