forked from wolfSSL/wolfssl
fix TRUE/FALSE clash in asn.c
This commit is contained in:
@ -71,10 +71,10 @@
|
|||||||
|
|
||||||
|
|
||||||
#ifndef TRUE
|
#ifndef TRUE
|
||||||
enum {
|
#define TRUE 1
|
||||||
FALSE = 0,
|
#endif
|
||||||
TRUE = 1
|
#ifndef FALSE
|
||||||
};
|
#define FALSE 0
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user