check TRUE/FALSE and move after all includes in ssl.c

pull/1/head
toddouska 2013-03-14 09:34:29 -07:00
parent bb103561ae
commit 4e99c7ac99
1 changed files with 6 additions and 2 deletions

View File

@ -27,8 +27,6 @@
#include <errno.h>
#endif
#define TRUE 1
#define FALSE 0
#include <cyassl/ssl.h>
#include <cyassl/internal.h>
@ -72,6 +70,12 @@
#endif
#endif /* NO_FILESYSTEM */
#ifndef TRUE
#define TRUE 1
#endif
#ifndef FALSE
#define FALSE 0
#endif
#ifndef min