FileAccessWindows: Add errno include for MinGW

Apparently MSVC is happy with ENOENT without it, but MinGW seems to
require it.
Follow-up to #31499.
This commit is contained in:
Rémi Verschelde 2019-08-21 10:52:54 +02:00
parent 51def4dab9
commit e797ae4704

View file

@ -38,6 +38,7 @@
#include <shlwapi.h>
#include <windows.h>
#include <errno.h>
#include <sys/stat.h>
#include <sys/types.h>
#include <tchar.h>