Changed bool to smaller datatype for PIC port.

This commit is contained in:
skarg
2006-08-10 20:49:53 +00:00
parent d4b3e73439
commit 74be0dd457
+1 -1
View File
@@ -4,7 +4,7 @@
/* C99 Boolean types for compilers without C99 support */
#ifndef __cplusplus
typedef int _Bool;
typedef char _Bool;
#ifndef bool
#define bool _Bool
#endif