summaryrefslogtreecommitdiff
path: root/internal.h
diff options
context:
space:
mode:
authorakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-07 10:01:19 +0000
committerakr <akr@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2013-06-07 10:01:19 +0000
commitbd15d4ca78dd8a9c60e0edf8814fb8e971d35097 (patch)
treed170cde9a94bb36ba5baf58fb562278f74ce5ae1 /internal.h
parent8e65ff7e312b1d18f7aec9d8bac066ef13cb6705 (diff)
* internal.h (numberof): Gathered from various files.
* array.c, math.c, thread_pthread.c, iseq.c, enum.c, string.c, io.c, load.c, compile.c, struct.c, eval.c, gc.c, parse.y, process.c, error.c, ruby.c: Remove the definitions of numberof. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@41142 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'internal.h')
-rw-r--r--internal.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/internal.h b/internal.h
index 088eab2e68..c35b6b2916 100644
--- a/internal.h
+++ b/internal.h
@@ -19,6 +19,8 @@ extern "C" {
#endif
#endif
+#define numberof(array) ((int)(sizeof(array) / sizeof((array)[0])))
+
#define GCC_VERSION_SINCE(major, minor, patchlevel) \
(defined(__GNUC__) && !defined(__INTEL_COMPILER) && \
((__GNUC__ > (major)) || \