blob: ae66b7f72689c3e1b0efa1f5449a89efc8785f43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
diff --git a/usrsctplib/usrsctp.h b/usrsctplib/usrsctp.h
index b719290..3a4759c 100644
--- a/usrsctplib/usrsctp.h
+++ b/usrsctplib/usrsctp.h
@@ -61,6 +61,8 @@ extern "C" {
#ifdef _WIN32
#if defined(_MSC_VER) && _MSC_VER >= 1600
#include <stdint.h>
+#elif __MINGW32__
+#include <stdint.h>
#elif defined(SCTP_STDINT_INCLUDE)
#include SCTP_STDINT_INCLUDE
#else
|