tool_dirhie: drop superfluous F_OK fallback (Windows)

Follow-up to cb5ba675a7

Closes #20214
This commit is contained in:
Viktor Szakats 2026-01-07 22:11:58 +01:00
parent d8f6175edc
commit bb7f69f9a2
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -32,9 +32,6 @@
#if defined(_WIN32) || (defined(MSDOS) && !defined(__DJGPP__))
# define mkdir(x, y) (mkdir)(x)
# ifndef F_OK
# define F_OK 0
# endif
#endif
static void show_dir_errno(const char *name)