[Pipeline] bmp2arr: Try to work for Borland C and Microsoft C++

This commit is contained in:
Jonathan Campbell 2020-06-27 17:36:46 -07:00
parent 80a1c99318
commit e1e8be3d0d
1 changed files with 6 additions and 2 deletions

View File

@ -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>