We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bd7c95f commit 79730e2Copy full SHA for 79730e2
src/include/port/win32_port.h
@@ -510,6 +510,11 @@ typedef unsigned short mode_t;
510
#define isnan(x) _isnan(x)
511
#endif
512
513
+/* Pulled from Makefile.port in MinGW */
514
+#define DLSUFFIX ".dll"
515
+
516
+#endif /* _MSC_VER */
517
518
#if (defined(_MSC_VER) && (_MSC_VER < 1900)) || \
519
defined(__MINGW32__) || defined(__MINGW64__)
520
/*
@@ -529,9 +534,4 @@ typedef unsigned short mode_t;
529
534
#define HAVE_BUGGY_STRTOF 1
530
535
531
536
532
-/* Pulled from Makefile.port in MinGW */
533
-#define DLSUFFIX ".dll"
-
-#endif /* _MSC_VER */
537
#endif /* PG_WIN32_PORT_H */
0 commit comments