Commit 1e07b403 authored by Nick Mathewson's avatar Nick Mathewson 🤹
Browse files

Move ARRAY_LENGTH to compiler_compat.h

parent 0932f322
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -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
Original line number Diff line number Diff line
@@ -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) */