home *** CD-ROM | disk | FTP | other *** search
- /*
- * Mach Operating System
- * Copyright (c) 1991,1990,1989 Carnegie Mellon University
- * All Rights Reserved.
- *
- * Permission to use, copy, modify and distribute this software and its
- * documentation is hereby granted, provided that both the copyright
- * notice and this permission notice appear in all copies of the
- * software, derivative works or modified versions, and any portions
- * thereof, and that both notices appear in supporting documentation.
- *
- * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
- * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
- * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
- *
- * Carnegie Mellon requests users of this software to return to
- *
- * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
- * School of Computer Science
- * Carnegie Mellon University
- * Pittsburgh PA 15213-3890
- *
- * any improvements or extensions that they make and grant Carnegie Mellon
- * the rights to redistribute these changes.
- */
- /*
- * HISTORY
- * $Log: boolean.h,v $
- * Revision 2.5 93/01/14 17:41:46 danner
- * Cleanup.
- * [92/06/10 pds]
- *
- * Revision 2.4 91/05/14 16:51:56 mrt
- * Correcting copyright
- *
- * Revision 2.3 91/02/05 17:32:04 mrt
- * Changed to new Mach copyright
- * [91/02/01 17:09:33 mrt]
- *
- * Revision 2.2 90/05/03 15:47:26 dbg
- * First checkin.
- *
- * Revision 1.3 89/03/09 20:19:36 rpd
- * More cleanup.
- *
- * Revision 1.2 89/02/26 13:00:41 gm0w
- * Changes for cleanup.
- *
- * 24-Sep-86 Michael Young (mwyoung) at Carnegie-Mellon University
- * Created.
- */
-
- /*
- * File: boolean.h
- *
- * Boolean type, for I386.
- */
-
- #ifndef _MACH_I386_BOOLEAN_H_
- #define _MACH_I386_BOOLEAN_H_
-
- typedef unsigned int boolean_t;
-
- #endif /* _MACH_I386_BOOLEAN_H_ */
-