Gitiles
Code Review
Sign In
gerrit.openbmc.org
/
openbmc
/
libpldm
/
c127a012d2f99d2cf97fe74548f6a64f4b2e0994
/
.
/
src
/
array.h
blob: 45e83aaaa71128e69d5b3bdc53c93118f68cfd7a [
file
] [
log
] [
blame
]
/* SPDX-License-Identifier: Apache-2.0 OR GPL-2.0-or-later */
#ifndef
LIBPLDM_SRC_ARRAY_H
#define
LIBPLDM_SRC_ARRAY_H
#ifndef
ARRAY_SIZE
#define
ARRAY_SIZE
(
a
)
(
sizeof
(
a
)
/
sizeof
((
a
)[
0
]))
#endif
#endif