fix TRUE/FALSE clash in asn.c

pull/1/head
Chris Conlon 2013-03-15 11:50:45 -06:00
parent dd4be2496a
commit e12f947c4f
1 changed files with 4 additions and 4 deletions

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