/*
 * @(#)bool.h	1.5 96/11/23
 * 
 * Copyright (c) 1995, 1996 Sun Microsystems, Inc. All Rights Reserved.
 * 
 */

#ifndef	_BOOL_H_
#define	_BOOL_H_

#undef	TRUE
#undef	FALSE

typedef	enum {
    FALSE = 0,
    TRUE = 1
} bool_t;

#endif /* !_BOOL_H_ */
