1122102Sscottl/*-
2122102Sscottl * Copyright (c) 2003 Ryuichiro Imura
3122102Sscottl * All rights reserved.
4122102Sscottl *
5122102Sscottl * Redistribution and use in source and binary forms, with or without
6122102Sscottl * modification, are permitted provided that the following conditions
7122102Sscottl * are met:
8122102Sscottl * 1. Redistributions of source code must retain the above copyright
9122102Sscottl *    notice, this list of conditions and the following disclaimer.
10122102Sscottl * 2. Redistributions in binary form must reproduce the above copyright
11122102Sscottl *    notice, this list of conditions and the following disclaimer in the
12122102Sscottl *    documentation and/or other materials provided with the distribution.
13122102Sscottl *
14122102Sscottl * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15122102Sscottl * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16122102Sscottl * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17122102Sscottl * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18122102Sscottl * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19122102Sscottl * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20122102Sscottl * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21122102Sscottl * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22122102Sscottl * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23122102Sscottl * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24122102Sscottl * SUCH DAMAGE.
25122102Sscottl */
26122102Sscottl
27122102Sscottl#include <sys/cdefs.h>
28122102Sscottl__FBSDID("$FreeBSD$");
29122102Sscottl
30122102Sscottl#include <sys/param.h>
31122102Sscottl#include <sys/iconv.h>
32122102Sscottl#include <sys/kernel.h>
33122102Sscottl#include <sys/module.h>
34122102Sscottl#include <sys/mount.h>
35122102Sscottl
36122102SscottlVFS_DECLARE_ICONV(udf);
37