blob: 3b92d43ad1ace00cdeaf31ca016c22e5d00b9b64 [file] [log] [blame]
/*
* Copyright (c) 2007 Apple Inc.
* All rights reserved.
*
*/
#ifndef __STDBOOL_H__
#define __STDBOOL_H__ 1
#define __bool_true_false_are_defined 1
#ifndef __cplusplus
#define false 0
#define true 1
#define bool _Bool
#ifndef COCOTRON
typedef unsigned char _Bool;
#endif
#endif /* !__cplusplus */
#endif