changed comments from old to new style (one-line comments only)
[rocksndiamonds.git] / src / libgame / types.h
index 1278a553a6418c85f6ee2f1bde885f78ca8594fa..646bb3e9afed604cf118fcd577c38982a0b9ff51 100644 (file)
@@ -64,8 +64,7 @@ typedef unsigned char byte;
 #define EVEN(a)                (((a) & 1) == 0)
 #endif
 
-#define SIZEOF_ARRAY(array, type)      (sizeof(array) / sizeof(type))
-#define SIZEOF_ARRAY_INT(array)                SIZEOF_ARRAY(array, int)
+#define ARRAY_SIZE(array)              (sizeof(array) / sizeof(array[0]))
 
 
 struct ListNode
@@ -77,4 +76,4 @@ struct ListNode
 };
 typedef struct ListNode ListNode;
 
-#endif /* TYPES_H */
+#endif // TYPES_H