home *** CD-ROM | disk | FTP | other *** search
- /*
- * @(#)bool.h 1.11 00/02/02
- *
- * Copyright 1994-2000 Sun Microsystems, Inc. All Rights Reserved.
- *
- * This software is the proprietary information of Sun Microsystems, Inc.
- * Use is subject to license terms.
- *
- */
-
- #ifndef _JAVASOFT_BOOL_H_
- #define _JAVASOFT_BOOL_H_
-
- #undef TRUE
- #undef FALSE
-
- typedef enum {
- FALSE = 0,
- TRUE = 1
- } bool_t;
-
- #endif /* !_JAVASOFT_BOOL_H_ */
-