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
enum {
FALSE = 0,
TRUE = 1
};
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif