Add ARRAY_SIZE macro from egcs version
authorNick Clifton <nickc@redhat.com>
Sun, 3 Sep 2000 17:35:07 +0000 (17:35 +0000)
committerNick Clifton <nickc@redhat.com>
Sun, 3 Sep 2000 17:35:07 +0000 (17:35 +0000)
include/ChangeLog
include/libiberty.h

index 6f570ac95f5b5ec20df7ad45007b6d29de8310b4..c49acf04d867400a6a0a224b6267df539b7d5227 100644 (file)
@@ -1,3 +1,7 @@
+2000-08-24  Greg McGary  <greg@mcgary.org>
+
+       * libiberty.h (ARRAY_SIZE): New macro.
+
 2000-08-08  Jason Eckhardt  <jle@cygnus.com>
 
        * opcode/i860.h: Small formatting adjustments.
index 476e0165b3eed5206e7045ee3e1a2b6f5460936b..e6eb34739ce9fb35250585ee4acffd0829811fbe 100644 (file)
@@ -200,6 +200,8 @@ extern int asprintf PARAMS ((char **, const char *, ...)) ATTRIBUTE_PRINTF_2;
 extern int vasprintf PARAMS ((char **, const char *, va_list))
   ATTRIBUTE_PRINTF(2,0);
 
+#define ARRAY_SIZE(a) (sizeof (a) / sizeof ((a)[0]))
+
 #ifdef __cplusplus
 }
 #endif