mirror of https://github.com/nmlgc/ReC98.git
[Pipeline] bmp2arr: Try to work for Borland C and Microsoft C++
This commit is contained in:
parent
80a1c99318
commit
e1e8be3d0d
|
@ -4,8 +4,12 @@
|
||||||
#else
|
#else
|
||||||
# include <stdint.h>
|
# include <stdint.h>
|
||||||
#endif
|
#endif
|
||||||
#include <sys/types.h>
|
#if defined(_MSC_VER)/*Microsoft C++*/ || defined(__BORLANDC__)
|
||||||
#include <sys/stat.h>
|
# include <io.h>
|
||||||
|
#else
|
||||||
|
# include <sys/types.h>
|
||||||
|
# include <sys/stat.h>
|
||||||
|
#endif
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <string.h>
|
#include <string.h>
|
||||||
#include <malloc.h>
|
#include <malloc.h>
|
||||||
|
|
Loading…
Reference in New Issue