Added testing for _WIN64 when testing for _WIN32

This commit is contained in:
Landon Curt Noll
2021-12-08 12:04:13 -08:00
parent 9f3a7817d3
commit af72992ead
17 changed files with 48 additions and 44 deletions

4
file.c
View File

@@ -46,7 +46,7 @@
#include "calcerr.h"
#include "strl.h"
#if defined(_WIN32)
#if defined(_WIN32) || defined(_WIN64)
# include <io.h>
#endif
@@ -728,7 +728,7 @@ flushid(FILEID id)
}
#if !defined(_WIN32)
#if !defined(_WIN32) && !defined(_WIN64)
int
flushall(void)
{