1 /*
2  * boolean.h
3  *
4  * All rights reserved. Copyright (C) 1996 by NARITA Tomio
5  * $Id: boolean.h,v 1.4 2004/01/05 07:25:29 nrt Exp $
6  */
7 
8 #ifndef __BOOLEAN_H__
9 #define __BOOLEAN_H__
10 
11 #ifndef FALSE
12 #define FALSE		0
13 #endif
14 
15 #ifndef TRUE
16 #define TRUE		1
17 #endif
18 
19 #ifndef boolean_t
20 #define boolean_t	int
21 #endif
22 
23 #endif /* __BOOLEAN_H__ */
24