Browse Source

Fix bswap macros for Microsoft Visual Studio C 2006 or newer

oldfaber 11 years ago
parent
commit
017ffb3030
1 changed files with 3 additions and 0 deletions
  1. 3 0
      src/modbus-data.c

+ 3 - 0
src/modbus-data.c

@@ -39,6 +39,9 @@
 #    define bswap_32 __builtin_bswap32
 #  endif
 #endif
+#if defined(_MSC_VER) && (_MSC_VER >= 1400)
+# define bswap_32 _byteswap_ulong
+#endif
 
 #if !defined(bswap_32)