1174042Sjb/*
2174042Sjb * Copyright (C) 2007 John Birrell <jb@freebsd.org>
3174042Sjb * All rights reserved.
4174042Sjb *
5174042Sjb * Redistribution and use in source and binary forms, with or without
6174042Sjb * modification, are permitted provided that the following conditions
7174042Sjb * are met:
8174042Sjb * 1. Redistributions of source code must retain the above copyright
9174042Sjb *    notice, this list of conditions and the following disclaimer.
10174042Sjb * 2. Redistributions in binary form must reproduce the above copyright
11174042Sjb *    notice, this list of conditions and the following disclaimer in the
12174042Sjb *    documentation and/or other materials provided with the distribution.
13174042Sjb *
14174042Sjb * THIS SOFTWARE IS PROVIDED BY AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15174042Sjb * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16174042Sjb * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17174042Sjb * ARE DISCLAIMED.  IN NO EVENT SHALL AUTHOR OR CONTRIBUTORS BE LIABLE
18174042Sjb * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19174042Sjb * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20174042Sjb * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21174042Sjb * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22174042Sjb * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23174042Sjb * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24174042Sjb * SUCH DAMAGE.
25174042Sjb *
26174042Sjb * $FreeBSD$
27174042Sjb *
28174042Sjb */
29174042Sjb
30174042Sjb#ifndef _COMPAT_OPENSOLARIS_SYS_MODCTL_H
31174042Sjb#define	_COMPAT_OPENSOLARIS_SYS_MODCTL_H
32174042Sjb
33174042Sjb#include <sys/param.h>
34174042Sjb#include <sys/linker.h>
35174042Sjb
36174042Sjbtypedef struct linker_file modctl_t;
37174042Sjb
38174042Sjb#endif /* _COMPAT_OPENSOLARIS_SYS_MODCTL_H */
39