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
|
||||
# include <stdint.h>
|
||||
#endif
|
||||
#include <sys/types.h>
|
||||
#include <sys/stat.h>
|
||||
#if defined(_MSC_VER)/*Microsoft C++*/ || defined(__BORLANDC__)
|
||||
# include <io.h>
|
||||
#else
|
||||
# include <sys/types.h>
|
||||
# include <sys/stat.h>
|
||||
#endif
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <malloc.h>
|
||||
|
|
Loading…
Reference in New Issue