Commit 71d57be5 authored by Richard Levitte's avatar Richard Levitte
Browse files

For Windows, use _stat rather than stat



This allows for better flexibility with mixed /M compiler flags

Reviewed-by: default avatarAndy Polyakov <appro@openssl.org>
(Merged from https://github.com/openssl/openssl/pull/3930)
parent 479af767
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
@@ -30,6 +30,10 @@

#include "e_os.h"

#ifdef _WIN32
# define stat    _stat
#endif

/*-
 *  Password prompting
 *  ------------------