157438287SJohn Birrell /* 257438287SJohn Birrell * CDDL HEADER START 357438287SJohn Birrell * 457438287SJohn Birrell * The contents of this file are subject to the terms of the 557438287SJohn Birrell * Common Development and Distribution License (the "License"). 657438287SJohn Birrell * You may not use this file except in compliance with the License. 757438287SJohn Birrell * 857438287SJohn Birrell * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 957438287SJohn Birrell * or http://www.opensolaris.org/os/licensing. 1057438287SJohn Birrell * See the License for the specific language governing permissions 1157438287SJohn Birrell * and limitations under the License. 1257438287SJohn Birrell * 1357438287SJohn Birrell * When distributing Covered Code, include this CDDL HEADER in each 1457438287SJohn Birrell * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 1557438287SJohn Birrell * If applicable, add the following below this CDDL HEADER, with the 1657438287SJohn Birrell * fields enclosed by brackets "[]" replaced with your own identifying 1757438287SJohn Birrell * information: Portions Copyright [yyyy] [name of copyright owner] 1857438287SJohn Birrell * 1957438287SJohn Birrell * CDDL HEADER END 2057438287SJohn Birrell */ 2157438287SJohn Birrell 2257438287SJohn Birrell #ifndef _COMPAT_OPENSOLARIS_SYS_OBJFS_H 2357438287SJohn Birrell #define _COMPAT_OPENSOLARIS_SYS_OBJFS_H 2457438287SJohn Birrell 2557438287SJohn Birrell /* 2657438287SJohn Birrell * Private data structure found in '.info' section 2757438287SJohn Birrell */ 2857438287SJohn Birrell typedef struct objfs_info { 2957438287SJohn Birrell int objfs_info_primary; 3057438287SJohn Birrell } objfs_info_t; 3157438287SJohn Birrell 3257438287SJohn Birrell 3357438287SJohn Birrell #endif /* _COMPAT_OPENSOLARIS_SYS_OBJFS_H */ 34