diff --git a/pdt.h b/pdt.h index 29ffbb5..e46b218 100644 --- a/pdt.h +++ b/pdt.h @@ -22,7 +22,12 @@ #include -enum {FALSE, TRUE}; +#ifndef FALSE +#define FALSE 0 +#endif +#ifndef TRUE +#define TRUE 1 +#endif typedef int Boolean; typedef uint8_t Enumeration8;