Browse Source

Move ARRAY_LENGTH to compiler_compat.h

Nick Mathewson 5 years ago
parent
commit
1e07b4031e
2 changed files with 3 additions and 2 deletions
  1. 0 2
      src/common/util.h
  2. 3 0
      src/lib/cc/compat_compiler.h

+ 0 - 2
src/common/util.h

@@ -451,6 +451,4 @@ STATIC int format_helper_exit_status(unsigned char child_state,
 
 #endif /* defined(UTIL_PRIVATE) */
 
-#define ARRAY_LENGTH(x) ((sizeof(x)) / sizeof(x[0]))
-
 #endif /* !defined(TOR_UTIL_H) */

+ 3 - 0
src/lib/cc/compat_compiler.h

@@ -253,4 +253,7 @@
  */
 #define STRUCT_VAR_P(st, off) ((void*) ( ((char*)(st)) + (off) ) )
 
+/** Macro: Yields the number of elements in array x. */
+#define ARRAY_LENGTH(x) ((sizeof(x)) / sizeof(x[0]))
+
 #endif /* !defined(TOR_COMPAT_H) */