1174042Sjb/*
2174042Sjb * CDDL HEADER START
3174042Sjb *
4174042Sjb * The contents of this file are subject to the terms of the
5174042Sjb * Common Development and Distribution License (the "License").
6174042Sjb * You may not use this file except in compliance with the License.
7174042Sjb *
8174042Sjb * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9174042Sjb * or http://www.opensolaris.org/os/licensing.
10174042Sjb * See the License for the specific language governing permissions
11174042Sjb * and limitations under the License.
12174042Sjb *
13174042Sjb * When distributing Covered Code, include this CDDL HEADER in each
14174042Sjb * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15174042Sjb * If applicable, add the following below this CDDL HEADER, with the
16174042Sjb * fields enclosed by brackets "[]" replaced with your own identifying
17174042Sjb * information: Portions Copyright [yyyy] [name of copyright owner]
18174042Sjb *
19174042Sjb * CDDL HEADER END
20178414Sjb *
21178414Sjb * $FreeBSD: releng/11.0/sys/cddl/compat/opensolaris/sys/objfs.h 178414 2008-04-22 07:43:00Z jb $
22174042Sjb */
23174042Sjb
24174042Sjb#ifndef _COMPAT_OPENSOLARIS_SYS_OBJFS_H
25174042Sjb#define	_COMPAT_OPENSOLARIS_SYS_OBJFS_H
26174042Sjb
27174042Sjb/*
28174042Sjb * Private data structure found in '.info' section
29174042Sjb */
30174042Sjbtypedef struct objfs_info {
31174042Sjb        int             objfs_info_primary;
32174042Sjb} objfs_info_t;
33174042Sjb
34174042Sjb
35174042Sjb#endif	/* _COMPAT_OPENSOLARIS_SYS_OBJFS_H */
36