From d05c2db3fb4d34889133d40a6a33ff3933bd3f57 Mon Sep 17 00:00:00 2001 From: Marius Greuel Date: Tue, 4 Jan 2022 18:27:41 +0100 Subject: [PATCH] Add a missing define to the MSVC compatiblity shim --- src/msvc/msvc_compat.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/msvc/msvc_compat.h b/src/msvc/msvc_compat.h index 58a26f21..19acf5b8 100644 --- a/src/msvc/msvc_compat.h +++ b/src/msvc/msvc_compat.h @@ -32,6 +32,8 @@ #pragma comment(lib, "ws2_32.lib") #pragma comment(lib, "setupapi.lib") +#define F_OK 0 + #define PATH_MAX _MAX_PATH #define __builtin_popcount __popcnt