From 6c14dc194c16db975802c5738158fcf848131518 Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Thu, 30 Oct 2014 14:40:19 -0500 Subject: [PATCH] Replace the epicsBoolean type in epicsTypes.h --- src/libCom/misc/epicsTypes.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/libCom/misc/epicsTypes.h b/src/libCom/misc/epicsTypes.h index ef9f790fc..711f75364 100644 --- a/src/libCom/misc/epicsTypes.h +++ b/src/libCom/misc/epicsTypes.h @@ -26,6 +26,11 @@ # endif #endif +typedef enum { + epicsFalse = 0, + epicsTrue = 1 +} epicsBoolean; + /* * Architecture Independent Data Types * These are sufficient for all our current archs