#include "H5Eprivate.h"     /* Error handling           */
#include "H5EApkg.h"        /* Extensible Arrays            */
#include "H5MFprivate.h"    /* File memory management       */
#include "H5Vprivate.h"     /* Vectors and arrays           */
/****************/
/* Local Macros */
/****************/
#ifndef NDEBUG
/* Max. # of bits for max. nelmts index */
#define H5EA_MAX_NELMTS_IDX_MAX 64
#endif /* NDEBUG */
/* # of elements in a data block for a particular super block */
#define H5EA_SBLK_DBLK_NELMTS(s, m)                                           \
    (size_t)H5_EXP2(((s) + 1) / 2) * (m)
/******************/
/* Local Typedefs */
/******************/