*fixed a compiling issue.

This commit is contained in:
Wang Renxin 2021-03-12 14:07:02 +08:00
parent dbd7acdc9d
commit 789019fb4a
2 changed files with 1 additions and 2 deletions

View File

@ -43,7 +43,6 @@
#endif /* MB_CP_ARDUINO */ #endif /* MB_CP_ARDUINO */
#ifdef MB_CP_VC #ifdef MB_CP_VC
# include <conio.h> # include <conio.h>
# include <locale.h>
# include <malloc.h> # include <malloc.h>
# include <Windows.h> # include <Windows.h>
#else /* MB_CP_VC */ #else /* MB_CP_VC */

View File

@ -33,7 +33,6 @@
#ifdef MB_CP_VC #ifdef MB_CP_VC
# include <conio.h> # include <conio.h>
# include <crtdbg.h> # include <crtdbg.h>
# include <locale.h>
# include <Windows.h> # include <Windows.h>
#elif !defined MB_CP_BORLANDC && !defined MB_CP_TCC #elif !defined MB_CP_BORLANDC && !defined MB_CP_TCC
# include <unistd.h> # include <unistd.h>
@ -48,6 +47,7 @@
# include <sys/time.h> # include <sys/time.h>
#endif /* MB_CP_CLANG */ #endif /* MB_CP_CLANG */
#include <assert.h> #include <assert.h>
#include <locale.h>
#include <setjmp.h> #include <setjmp.h>
#include <stdarg.h> #include <stdarg.h>
#include <stdio.h> #include <stdio.h>