- icc 11 defines __ptr32
[cparser] / adt / util.h
index c2aef83..a3abdfc 100644 (file)
@@ -1,6 +1,6 @@
 /*
  * This file is part of cparser.
- * Copyright (C) 2007-2008 Matthias Braun <matze@braunis.de>
+ * Copyright (C) 2007-2009 Matthias Braun <matze@braunis.de>
  *
  * This program is free software; you can redistribute it and/or
  * modify it under the terms of the GNU General Public License
@@ -50,4 +50,6 @@
  */
 #define UNLIKELY(x) __builtin_expect((x), 0)
 
+#define lengthof(x) (sizeof(x) / sizeof(*(x)))
+
 #endif