1 /*
2  * CDDL HEADER START
3  *
4  * The contents of this file are subject to the terms of the
5  * Common Development and Distribution License, Version 1.0 only
6  * (the "License").  You may not use this file except in compliance
7  * with the License.
8  *
9  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10  * or https://opensource.org/licenses/CDDL-1.0.
11  * See the License for the specific language governing permissions
12  * and limitations under the License.
13  *
14  * When distributing Covered Code, include this CDDL HEADER in each
15  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16  * If applicable, add the following below this CDDL HEADER, with the
17  * fields enclosed by brackets "[]" replaced with your own identifying
18  * information: Portions Copyright [yyyy] [name of copyright owner]
19  *
20  * CDDL HEADER END
21  */
22 
23 #ifndef	__SYS_STDTYPES_H
24 #define	__SYS_STDTYPES_H
25 
26 typedef enum {
27 	B_FALSE = 0,
28 	B_TRUE = 1
29 } boolean_t;
30 
31 typedef unsigned char		uchar_t;
32 typedef unsigned short		ushort_t;
33 typedef unsigned int		uint_t;
34 typedef unsigned long		ulong_t;
35 typedef unsigned long long	u_longlong_t;
36 typedef long long		longlong_t;
37 
38 typedef longlong_t		offset_t;
39 typedef u_longlong_t		u_offset_t;
40 typedef u_longlong_t		len_t;
41 typedef longlong_t		diskaddr_t;
42 
43 typedef ulong_t			pgcnt_t;	/* number of pages */
44 typedef long			spgcnt_t;	/* signed number of pages */
45 
46 typedef short			pri_t;
47 typedef ushort_t		o_mode_t;	/* old file attribute type */
48 
49 typedef int			major_t;
50 typedef int			minor_t;
51 
52 typedef short			index_t;
53 
54 #endif	/* __SYS_STDTYPES_H */
55