fix TRUE/FALSE clash in asn.c

This commit is contained in:
Chris Conlon
2013-03-15 11:50:45 -06:00
parent dd4be2496a
commit e12f947c4f

View File

@ -71,10 +71,10 @@
#ifndef TRUE #ifndef TRUE
enum { #define TRUE 1
FALSE = 0, #endif
TRUE = 1 #ifndef FALSE
}; #define FALSE 0
#endif #endif