]> git.saurik.com Git - apple/xnu.git/blame - osfmk/mach/i386/boolean.h
xnu-123.5.tar.gz
[apple/xnu.git] / osfmk / mach / i386 / boolean.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22/*
23 * @OSF_COPYRIGHT@
24 */
25/*
26 * HISTORY
27 *
28 * Revision 1.1.1.1 1998/09/22 21:05:31 wsanchez
29 * Import of Mac OS X kernel (~semeria)
30 *
31 * Revision 1.1.1.1 1998/03/07 02:25:47 wsanchez
32 * Import of OSF Mach kernel (~mburg)
33 *
34 * Revision 1.2.6.1 1994/09/23 02:36:44 ezf
35 * change marker to not FREE
36 * [1994/09/22 21:39:49 ezf]
37 *
38 * Revision 1.2.2.2 1993/06/09 02:40:19 gm
39 * Added to OSF/1 R1.3 from NMK15.0.
40 * [1993/06/02 21:16:03 jeffc]
41 *
42 * Revision 1.2 1993/04/19 16:33:37 devrcs
43 * ansi C conformance changes
44 * [1993/02/02 18:55:53 david]
45 *
46 * Revision 1.1 1992/09/30 02:30:40 robert
47 * Initial revision
48 *
49 * $EndLog$
50 */
51/* CMU_HIST */
52/*
53 * Revision 2.4 91/05/14 16:51:56 mrt
54 * Correcting copyright
55 *
56 * Revision 2.3 91/02/05 17:32:04 mrt
57 * Changed to new Mach copyright
58 * [91/02/01 17:09:33 mrt]
59 *
60 * Revision 2.2 90/05/03 15:47:26 dbg
61 * First checkin.
62 *
63 * Revision 1.3 89/03/09 20:19:36 rpd
64 * More cleanup.
65 *
66 * Revision 1.2 89/02/26 13:00:41 gm0w
67 * Changes for cleanup.
68 *
69 * 24-Sep-86 Michael Young (mwyoung) at Carnegie-Mellon University
70 * Created.
71 */
72/* CMU_ENDHIST */
73/*
74 * Mach Operating System
75 * Copyright (c) 1991,1990,1989 Carnegie Mellon University
76 * All Rights Reserved.
77 *
78 * Permission to use, copy, modify and distribute this software and its
79 * documentation is hereby granted, provided that both the copyright
80 * notice and this permission notice appear in all copies of the
81 * software, derivative works or modified versions, and any portions
82 * thereof, and that both notices appear in supporting documentation.
83 *
84 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
85 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
86 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
87 *
88 * Carnegie Mellon requests users of this software to return to
89 *
90 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
91 * School of Computer Science
92 * Carnegie Mellon University
93 * Pittsburgh PA 15213-3890
94 *
95 * any improvements or extensions that they make and grant Carnegie Mellon
96 * the rights to redistribute these changes.
97 */
98/*
99 */
100
101/*
102 * File: boolean.h
103 *
104 * Boolean type, for I386.
105 */
106
107#ifndef _MACH_I386_BOOLEAN_H_
108#define _MACH_I386_BOOLEAN_H_
109
110typedef int boolean_t;
111
112#endif /* _MACH_I386_BOOLEAN_H_ */