1126681Sjkoshy/*	$NetBSD$	*/
2126681Sjkoshy
3126681Sjkoshy/*
4126681Sjkoshy * Copyright (c) 2008 The NetBSD Foundation.  All Rights Reserved.
5126681Sjkoshy *
6126681Sjkoshy * Redistribution and use in source and binary forms, with or without
7126681Sjkoshy * modification, are permitted provided that the following conditions
8126681Sjkoshy * are met:
9126681Sjkoshy * 1. Redistributions of source code must retain the above copyright
10126681Sjkoshy *    notice, this list of conditions and the following disclaimer.
11126681Sjkoshy * 2. Redistributions in binary form must reproduce the above copyright
12126681Sjkoshy *    notice, this list of conditions and the following disclaimer in the
13126681Sjkoshy *    documentation and/or other materials provided with the distribution.
14136411Sjkoshy *
15126681Sjkoshy * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
16126681Sjkoshy * OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
17136411Sjkoshy * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
18126681Sjkoshy * DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
19126681Sjkoshy * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20126681Sjkoshy * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
21126681Sjkoshy * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22126681Sjkoshy * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23126681Sjkoshy * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24126681Sjkoshy * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25126681Sjkoshy * SUCH DAMAGE.
26126681Sjkoshy */
27126681Sjkoshy
28171503Salc#ifndef _SBIN_MOUNT_FFS_MOUNT_FFS_H_
29126681Sjkoshy#define _SBIN_MOUNT_FFS_MOUNT_FFS_H_
30126681Sjkoshy
31126681Sjkoshy#include <ufs/ufs/ufsmount.h>
32126681Sjkoshy
33126681Sjkoshyint	mount_ffs(int, char **);
34126681Sjkoshyvoid	mount_ffs_parseargs(int, char **, struct ufs_args *, int *,
35126681Sjkoshy			    char *, char *);
36126681Sjkoshy
37126681Sjkoshy#endif /* _SBIN_MOUNT_FFS_MOUNT_FFS_H_ */
38126681Sjkoshy