OSDN Git Service

* libiberty.h (ARRAY_SIZE): New macro.
authorgkm <gkm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Aug 2000 20:28:15 +0000 (20:28 +0000)
committergkm <gkm@138bc75d-0d04-0410-961f-82ee72b054a4>
Thu, 24 Aug 2000 20:28:15 +0000 (20:28 +0000)
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@35947 138bc75d-0d04-0410-961f-82ee72b054a4

include/ChangeLog
include/libiberty.h

index 2a07ee0..b31a655 100644 (file)
@@ -1,3 +1,7 @@
+2000-08-24  Greg McGary  <greg@mcgary.org>
+
+       * libiberty.h (ARRAY_SIZE): New macro.
+
 2000-06-21  Alex Samuel  <samuel@codesourcery.com>
 
        * dyn-string.h (dyn_string_init, dyn_string_new,
index 476e016..e6eb347 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