Files
heimdal/lib/roken/stdbool.h
2010-11-24 15:33:34 -05:00

14 lines
206 B
C

#ifndef _STDBOOL_H
#define _STDBOOL_H
#ifndef __GNUC__
typedef int _Bool;
#endif
#define bool _Bool
#define true 1
#define false 0
#define __bool_true_false_are_defined 1
#endif /* _STDBOOL_H */