xref: /openbmc/libpldm/src/array.h (revision d10c6b0ce56c531f5a1a1c3b7f4e7b5e0e2c06db)
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