diff options
| -rw-r--r-- | llvm/lib/Support/Windows/PathV2.inc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/llvm/lib/Support/Windows/PathV2.inc b/llvm/lib/Support/Windows/PathV2.inc index e98150713bb..5b2e288f816 100644 --- a/llvm/lib/Support/Windows/PathV2.inc +++ b/llvm/lib/Support/Windows/PathV2.inc @@ -23,6 +23,12 @@ #include <sys/stat.h> #include <sys/types.h> +// MinGW doesn't define this. +#ifndef _ERRNO_T_DEFINED
+#define _ERRNO_T_DEFINED
+typedef int errno_t;
+#endif + using namespace llvm; namespace { |

