jbig2dec
Ralph Giles <[email protected]> Tue, 09 Jul 2002 03:39:10 -0700
| Newsgroups | gmane.comp.printing.ghostscript.jbig2dec.cvs |
|---|---|
| Message-ID | <[email protected]> |
Update of /cvsroot/jbig2dec/jbig2dec In directory usw-pr-cvs1:/tmp/cvs-serv20674 Modified Files: jbig2_priv.h Log Message: protect definitions of TRUE/FALSE Index: jbig2_priv.h =================================================================== RCS file: /cvsroot/jbig2dec/jbig2dec/jbig2_priv.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- jbig2_priv.h 9 Jul 2002 09:45:32 -0000 1.14 +++ jbig2_priv.h 9 Jul 2002 10:39:08 -0000 1.15 @@ -16,8 +16,12 @@ typedef uint8_t byte; typedef int bool; +#ifndef TRUE #define TRUE 1 +#endif +#ifndef FALSE #define FALSE 0 +#endif #ifndef NULL #define NULL ((void*)0)