xref: /openbmc/libpldm/src/array.h (revision 9a6ba89c)
1 #ifndef LIBPLDM_SRC_ARRAY_H
2 #define LIBPLDM_SRC_ARRAY_H
3 
4 #ifndef ARRAY_SIZE
5 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
6 #endif
7 
8 #endif
9