xref: /openbmc/libpldm/src/array.h (revision 691668fe7662d779e6fd000e6e8e6aa7f3c8b17c)
1 /* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
2 #ifndef LIBPLDM_SRC_ARRAY_H
3 #define LIBPLDM_SRC_ARRAY_H
4 
5 #ifndef ARRAY_SIZE
6 #define ARRAY_SIZE(a) (sizeof(a) / sizeof((a)[0]))
7 #endif
8 
9 #endif
10