extern.h revision 28672
128672Ssteve/*-
228672Ssteve * Copyright (c) 1997 FreeBSD Inc.
328672Ssteve * All rights reserved.
428672Ssteve *
528672Ssteve * Redistribution and use in source and binary forms, with or without
628672Ssteve * modification, are permitted provided that the following conditions
728672Ssteve * are met:
828672Ssteve * 1. Redistributions of source code must retain the above copyright
928672Ssteve *    notice, this list of conditions and the following disclaimer.
1028672Ssteve * 2. Redistributions in binary form must reproduce the above copyright
1128672Ssteve *    notice, this list of conditions and the following disclaimer in the
1228672Ssteve *    documentation and/or other materials provided with the distribution.
1328672Ssteve *
1428672Ssteve * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
1528672Ssteve * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1628672Ssteve * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1728672Ssteve * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
1828672Ssteve * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1928672Ssteve * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2028672Ssteve * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2128672Ssteve * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2228672Ssteve * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2328672Ssteve * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2428672Ssteve * SUCH DAMAGE.
2528672Ssteve *
2628672Ssteve *     $Id$
2728672Ssteve */
2828672Ssteve
2928672Ssteve/* getmntopts.c */
3028672Sstevestruct mntopt;
3128672Ssteve
3228672Sstevevoid getmntopts __P((const char *, const struct mntopt *, int *, int *));
3328672Ssteveextern int getmnt_silent;
3428672Ssteve
3528672Ssteve/* vfslist.c */
3628672Ssteveint checkvfsname __P((const char *, const char **));
3728672Ssteveconst char **makevfslist __P((char *));
3828672Ssteve
3928672Ssteve/* mount_ufs.c */
4028672Ssteveint mount_ufs __P((int, char *const *));
41