From 74be0dd457bee99bc48275d2e2b478e32d074547 Mon Sep 17 00:00:00 2001 From: skarg Date: Thu, 10 Aug 2006 20:49:53 +0000 Subject: [PATCH] Changed bool to smaller datatype for PIC port. --- bacnet-stack/ports/pic18/stdbool.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bacnet-stack/ports/pic18/stdbool.h b/bacnet-stack/ports/pic18/stdbool.h index 2b7511a6..696ffd85 100644 --- a/bacnet-stack/ports/pic18/stdbool.h +++ b/bacnet-stack/ports/pic18/stdbool.h @@ -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