/* SPDX-License-Identifier: Apache-2.0 */ /* Copyright (C) 2018,2019 IBM Corp. */ #ifndef _ARRAY_H #define _ARRAY_H #define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0])) #endif