cache_init
int cache_init(void);
if (cache_init() != 0) {
extern const Cache cache_init;
*cache = cache_init;
*_cache = cache_init;
const Cache cache_init = {NULL, NULL, NULL, NULL, 0};
static int cache_init(void); /* initialize the cache */
int ret = cache_init();