Browse Source

added minor fix for atomics in c99 mode

Vladyslav Hrytsenko 7 years ago
parent
commit
2c5a622c68
2 changed files with 6 additions and 2 deletions
  1. 5 1
      include/enet.h
  2. 1 1
      package.json

+ 5 - 1
include/enet.h

@@ -18,7 +18,7 @@
 
 #define ENET_VERSION_MAJOR 2
 #define ENET_VERSION_MINOR 0
-#define ENET_VERSION_PATCH 0
+#define ENET_VERSION_PATCH 1
 #define ENET_VERSION_CREATE(major, minor, patch) (((major)<<16) | ((minor)<<8) | (patch))
 #define ENET_VERSION_GET_MAJOR(version) (((version)>>16)&0xFF)
 #define ENET_VERSION_GET_MINOR(version) (((version)>>8)&0xFF)
@@ -1084,6 +1084,10 @@ extern "C" {
         #define ENET_ATOMIC_READ(ptr) __atomic_load_n((ptr), __ATOMIC_ACQUIRE)
         #define ENET_ATOMIC_WRITE(ptr, value) __atomic_store_n((ptr), (value), __ATOMIC_RELEASE)
 
+        #ifndef typeof
+        #define typeof __typeof__
+        #endif
+
         /* clang_analyzer doesn't know that CAS writes to memory so it complains about
            potentially lost data. Replace the code with the equivalent non-sync code. */
         #ifdef __clang_analyzer__

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "enet.c",
-  "version": "2.0.0",
+  "version": "2.0.1",
   "description": "ENet - Simple, lightweight and reliable UDP networking library written on pure C.",
   "main": "include/enet.h",
   "directories": {