Don't try to use IS_xxx platform macros in cryptlib

This commit is contained in:
Brian Cox 2016-06-28 22:29:18 -07:00
parent fb1f751488
commit 1c8ec94fd2
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,8 @@
#include <string.h>
#endif
#if IS_MINT || IS_DOS_DJGPP // has memory.h, but memset defined in string.h anyway.
#if defined(__MINT__) || defined(__DJGPP__)
// OS has memory.h, but memset defined in string.h anyway.
#include <string.h>
#endif